Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-33186 (GCVE-0-2026-33186)
Vulnerability from cvelistv5 – Published: 2026-03-20 22:23 – Updated: 2026-03-24 18:09- CWE-285 - Improper Authorization
| URL | Tags |
|---|---|
| https://github.com/grpc/grpc-go/security/advisori… | x_refsource_CONFIRM |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-33186",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-03-24T18:08:38.989284Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-03-24T18:09:13.422Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "grpc-go",
"vendor": "grpc",
"versions": [
{
"status": "affected",
"version": "\u003c 1.79.3"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \"deny\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \"allow\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \"deny\" rules for canonical paths but allows other requests by default (a fallback \"allow\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-285",
"description": "CWE-285: Improper Authorization",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-03-20T22:23:32.147Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"source": {
"advisory": "GHSA-p77j-4mvh-x3m3",
"discovery": "UNKNOWN"
},
"title": "gRPC-Go has an authorization bypass via missing leading slash in :path"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-33186",
"datePublished": "2026-03-20T22:23:32.147Z",
"dateReserved": "2026-03-17T22:16:36.720Z",
"dateUpdated": "2026-03-24T18:09:13.422Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-33186",
"date": "2026-06-29",
"epss": "0.00522",
"percentile": "0.40354"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-33186\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-03-20T23:16:45.180\",\"lastModified\":\"2026-06-17T10:37:05.900\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"},{\"lang\":\"es\",\"value\":\"gRPC-Go es la implementaci\u00f3n en lenguaje Go de gRPC. Las versiones anteriores a la 1.79.3 tienen un bypass de autorizaci\u00f3n resultante de una validaci\u00f3n de entrada incorrecta del pseudo-encabezado HTTP/2 \u0027:path\u0027. El servidor gRPC-Go era demasiado indulgente en su l\u00f3gica de enrutamiento, aceptando solicitudes donde el \u0027:path\u0027 omit\u00eda la barra inicial obligatoria (por ejemplo, \u0027Service/Method\u0027 en lugar de \u0027/Service/Method\u0027). Si bien el servidor enrut\u00f3 con \u00e9xito estas solicitudes al gestor correcto, los interceptores de autorizaci\u00f3n (incluido el paquete oficial \u0027grpc/authz\u0027) evaluaron la cadena de ruta cruda y no can\u00f3nica. En consecuencia, las reglas de \u0027denegaci\u00f3n\u0027 definidas usando rutas can\u00f3nicas (que comienzan con \u0027/\u0027) no lograron coincidir con la solicitud entrante, permitiendo que bypassara la pol\u00edtica si una regla de \u0027permiso\u0027 de respaldo estaba presente. Esto afecta a los servidores gRPC-Go que utilizan interceptores de autorizaci\u00f3n basados en rutas, como la implementaci\u00f3n oficial de RBAC en \u0027google.golang.org/grpc/authz\u0027 o interceptores personalizados que dependen de \u0027info.FullMethod\u0027 o \u0027grpc.Method(ctx)\u0027; Y que tienen una pol\u00edtica de seguridad que contiene reglas de \u0027denegaci\u00f3n\u0027 espec\u00edficas para rutas can\u00f3nicas pero permite otras solicitudes por defecto (una regla de \u0027permiso\u0027 de respaldo). La vulnerabilidad es explotable por un atacante que puede enviar tramas HTTP/2 crudas con encabezados \u0027:path\u0027 malformados directamente al servidor gRPC. La correcci\u00f3n en la versi\u00f3n 1.79.3 asegura que cualquier solicitud con un \u0027:path\u0027 que no comience con una barra inicial sea inmediatamente rechazada con un error \u0027codes.Unimplemented\u0027, impidiendo que llegue a los interceptores de autorizaci\u00f3n o gestores con una cadena de ruta no can\u00f3nica. Si bien la actualizaci\u00f3n es la ruta m\u00e1s segura y recomendada, los usuarios pueden mitigar la vulnerabilidad utilizando uno de los siguientes m\u00e9todos: Usar un interceptor de validaci\u00f3n (mitigaci\u00f3n recomendada); normalizaci\u00f3n a nivel de infraestructura; y/o endurecimiento de pol\u00edticas.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"grpc\",\"product\":\"grpc-go\",\"versions\":[{\"version\":\"\u003c 1.79.3\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\",\"baseScore\":9.1,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":3.9,\"impactScore\":5.2}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-03-24T18:08:38.989284Z\",\"id\":\"CVE-2026-33186\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"yes\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-285\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:grpc:grpc:*:*:*:*:*:go:*:*\",\"versionEndExcluding\":\"1.79.3\",\"matchCriteriaId\":\"D5AB3ED0-D11B-461E-B2B1-627D5CCEA236\"}]}]}],\"references\":[{\"url\":\"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mitigation\",\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-33186\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-03-24T18:08:38.989284Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-03-24T18:09:03.096Z\"}}], \"cna\": {\"title\": \"gRPC-Go has an authorization bypass via missing leading slash in :path\", \"source\": {\"advisory\": \"GHSA-p77j-4mvh-x3m3\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 9.1, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"CRITICAL\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}], \"affected\": [{\"vendor\": \"grpc\", \"product\": \"grpc-go\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003c 1.79.3\"}]}], \"references\": [{\"url\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"name\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"tags\": [\"x_refsource_CONFIRM\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-285\", \"description\": \"CWE-285: Improper Authorization\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-03-20T22:23:32.147Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-33186\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-03-24T18:09:13.422Z\", \"dateReserved\": \"2026-03-17T22:16:36.720Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-03-20T22:23:32.147Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
RHSA-2026:22485
Vulnerability from csaf_redhat - Published: 2026-06-02 14:17 - Updated: 2026-06-29 12:50A 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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64 | — |
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64 | — |
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64 | — |
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64 | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_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": "An update is now available for Red Hat Lightspeed (formerly Insights) for Runtimes on RHEL 9.\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": "An update is now available for Red Hat Lightspeed (formerly Insights) for Runtimes on RHEL 9.\n\nSecurity fix(es):\n\n* gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n* crypto/x509: Denial of Service via inefficient certificate chain validation (CVE-2026-32281)\n* internal/syscall/unix: Root.Chmod can follow symlinks out of the root (CVE-2026-32282)\n* crypto/tls: Denial of Service via multiple TLS 1.3 key update messages (CVE-2026-32283)\n* crypto/x509: crypto/tls: Denial of Service vulnerability in certificate chain building (CVE-2026-32280)\n* crypto/x509: Certificate validation bypass due to incorrect DNS constraint application (CVE-2026-33810)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:22485",
"url": "https://access.redhat.com/errata/RHSA-2026:22485"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32283",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/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_22485.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Lightspeed (formerly Insights) for Runtimes security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:38+00:00",
"generator": {
"date": "2026-06-29T12:50:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22485",
"initial_release_date": "2026-06-02T14:17:27+00:00",
"revision_history": [
{
"date": "2026-06-02T14:17:27+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T14:17:39+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product": {
"name": "Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product_id": "Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:lightspeed_for_runtimes:1.0::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Lightspeed (formerly Insights) for Runtimes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"product": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"product_id": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/runtimes-inventory-rhel9-operator@sha256%3A77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8?arch=amd64\u0026repository_url=registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator\u0026tag=1.0.3-1779996197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"product": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"product_id": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/runtimes-inventory-operator-bundle@sha256%3A0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d?arch=amd64\u0026repository_url=registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle\u0026tag=1.0.3-1779996840"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64",
"product": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64",
"product_id": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/runtimes-inventory-rhel9-operator@sha256%3Ac7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b?arch=arm64\u0026repository_url=registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator\u0026tag=1.0.3-1779996197"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"product": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"product_id": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/runtimes-inventory-rhel9-operator@sha256%3Ab362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45?arch=ppc64le\u0026repository_url=registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator\u0026tag=1.0.3-1779996197"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"product": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"product_id": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/runtimes-inventory-rhel9-operator@sha256%3Abb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb?arch=s390x\u0026repository_url=registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator\u0026tag=1.0.3-1779996197"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64 as a component of Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product_id": "Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
},
"product_reference": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"relates_to_product_reference": "Red Hat Lightspeed (formerly Insights) for Runtimes 1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64 as a component of Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product_id": "Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64"
},
"product_reference": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"relates_to_product_reference": "Red Hat Lightspeed (formerly Insights) for Runtimes 1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le as a component of Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product_id": "Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le"
},
"product_reference": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"relates_to_product_reference": "Red Hat Lightspeed (formerly Insights) for Runtimes 1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x as a component of Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product_id": "Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x"
},
"product_reference": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"relates_to_product_reference": "Red Hat Lightspeed (formerly Insights) for Runtimes 1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64 as a component of Red Hat Lightspeed (formerly Insights) for Runtimes 1",
"product_id": "Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
},
"product_reference": "registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64",
"relates_to_product_reference": "Red Hat Lightspeed (formerly Insights) for Runtimes 1"
}
]
},
"vulnerabilities": [
{
"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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"known_not_affected": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T14:17:27+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22485"
}
],
"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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"known_not_affected": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "RHBZ#2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32281"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://go.dev/cl/758061",
"url": "https://go.dev/cl/758061"
},
{
"category": "external",
"summary": "https://go.dev/issue/78281",
"url": "https://go.dev/issue/78281"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4946",
"url": "https://pkg.go.dev/vuln/GO-2026-4946"
}
],
"release_date": "2026-04-08T01:06:58.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T14:17:27+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22485"
},
{
"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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"known_not_affected": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T14:17:27+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22485"
},
{
"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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"known_not_affected": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "RHBZ#2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32283",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32283"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://go.dev/cl/763767",
"url": "https://go.dev/cl/763767"
},
{
"category": "external",
"summary": "https://go.dev/issue/78334",
"url": "https://go.dev/issue/78334"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4870",
"url": "https://pkg.go.dev/vuln/GO-2026-4870"
}
],
"release_date": "2026-04-08T01:06:57.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T14:17:27+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22485"
}
],
"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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"known_not_affected": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T14:17:27+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22485"
},
{
"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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_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 Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_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-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"known_not_affected": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T14:17:27+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22485"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-operator-bundle@sha256:0afe9ca958403340a8ab4d89e07c4b685ea69cbfd5b94c3bc76b5db85afd152d_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:77f1e202337d716cd2fe7a6701efdeed9cae719f3dfdadf7a0fd4574a11b6ed8_amd64",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:b362fa9e2a18aa84f2393cce8555d34a9c8de822c65756897717ad54e2aa7c45_ppc64le",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:bb7ee5838e15f9a31c12af6f4629bb90ac0b41eeee98e0bac4642c6a764944cb_s390x",
"Red Hat Lightspeed (formerly Insights) for Runtimes 1:registry.redhat.io/rh-lightspeed-runtimes/runtimes-inventory-rhel9-operator@sha256:c7d68fdde482c4df1768b99ca6cb6fb358410a152020aca8cfac27bcf77d813b_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
}
]
}
RHSA-2026:22645
Vulnerability from csaf_redhat - Published: 2026-06-02 19:14 - Updated: 2026-06-29 12:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_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 Advanced Cluster Management for Kubernetes 2.13 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.13 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.13/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:22645",
"url": "https://access.redhat.com/errata/RHSA-2026:22645"
},
{
"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": "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_22645.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Advanced Cluster Management for Kubernetes v2.13.8 security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:41+00:00",
"generator": {
"date": "2026-06-29T12:50:41+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22645",
"initial_release_date": "2026-06-02T19:14:07+00:00",
"revision_history": [
{
"date": "2026-06-02T19:14:07+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T19:14:21+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:41+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.13",
"product": {
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:acm:2.13::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:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3A334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-cli-rhel9\u0026tag=1779372518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3Ae5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel9\u0026tag=1779889321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3A580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel9-operator\u0026tag=1779822919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3A0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-cluster-permission-rhel9\u0026tag=1779400071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3A06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel9\u0026tag=1779932599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3A6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/console-rhel9\u0026tag=1779809308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3Aa61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator\u0026tag=1779870336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3Aca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9\u0026tag=1779911795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3A66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9\u0026tag=1779932259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3A68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel9\u0026tag=1779932081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3Ad6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel9\u0026tag=1779324098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3Ac01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9\u0026tag=1779870337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3A2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/insights-client-rhel9\u0026tag=1779320359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3A3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel9\u0026tag=1779320334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3A87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9\u0026tag=1779320350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3A447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9\u0026tag=1779320365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3A7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel9\u0026tag=1779320388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3Ac896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel9\u0026tag=1780088779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3Aba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel9\u0026tag=1779870361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3A27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel9\u0026tag=1780097863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3A562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9\u0026tag=1779320397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3Abea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator\u0026tag=1779870369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3A915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel9\u0026tag=1779838775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3Acaf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9\u0026tag=1779406719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3Af9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9\u0026tag=1779575354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3A84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel9\u0026tag=1779391737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3A60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel9\u0026tag=1779372633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3A53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/node-exporter-rhel9\u0026tag=1779320428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3A1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9\u0026tag=1779320385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3A217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9-operator\u0026tag=1779320369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3A4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/prometheus-rhel9\u0026tag=1779320480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3Ae743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9\u0026tag=1779992048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3Ac704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9\u0026tag=1779925174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3Aeefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel9\u0026tag=1779522930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3Ad529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel9\u0026tag=1779870400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3Aa1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/search-collector-rhel9\u0026tag=1779320410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3A03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel9\u0026tag=1779539089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3A72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel9\u0026tag=1779320377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3Af5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel9\u0026tag=1779320398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3A0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-siteconfig-rhel9\u0026tag=1779579457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3A8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel9\u0026tag=1779320574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3A18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/thanos-rhel9\u0026tag=1779320464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3A343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel9\u0026tag=1779522955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3Ae381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9\u0026tag=1779743308"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3A70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-cli-rhel9\u0026tag=1779372518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3A959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel9\u0026tag=1779889321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3Acd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel9-operator\u0026tag=1779822919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3Ae3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-cluster-permission-rhel9\u0026tag=1779400071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3Aea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel9\u0026tag=1779932599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3A1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/console-rhel9\u0026tag=1779809308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3Acfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator\u0026tag=1779870336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3A614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9\u0026tag=1779911795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3A995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9\u0026tag=1779932259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3Adca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel9\u0026tag=1779932081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3A2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel9\u0026tag=1779324098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3Adb680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9\u0026tag=1779870337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3Ad43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/insights-client-rhel9\u0026tag=1779320359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3Ad9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel9\u0026tag=1779320334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3Aa0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9\u0026tag=1779320350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3Abaa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9\u0026tag=1779320365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3A471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel9\u0026tag=1779320388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3A9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel9\u0026tag=1780088779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3Af11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel9\u0026tag=1779870361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3Ac181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel9\u0026tag=1780097863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3A50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9\u0026tag=1779320397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3A4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator\u0026tag=1779870369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3A426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel9\u0026tag=1779838775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3A655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9\u0026tag=1779406719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3Ab1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9\u0026tag=1779575354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3A56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel9\u0026tag=1779391737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3A58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel9\u0026tag=1779372633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3A1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/node-exporter-rhel9\u0026tag=1779320428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3A72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9\u0026tag=1779320385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3Ae0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9-operator\u0026tag=1779320369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3A77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/prometheus-rhel9\u0026tag=1779320480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3Ab731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9\u0026tag=1779992048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3A2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9\u0026tag=1779925174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3A4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel9\u0026tag=1779522930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3Ad5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel9\u0026tag=1779870400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3A2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/search-collector-rhel9\u0026tag=1779320410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3A214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel9\u0026tag=1779539089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3A0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel9\u0026tag=1779320377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3Afea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel9\u0026tag=1779320398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3A73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-siteconfig-rhel9\u0026tag=1779579457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3A20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel9\u0026tag=1779320574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_arm64",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3Ae80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/thanos-rhel9\u0026tag=1779320464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3Aaea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel9\u0026tag=1779522955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3Acb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9\u0026tag=1779743308"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3A22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-cli-rhel9\u0026tag=1779372518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3Ada9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel9\u0026tag=1779889321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3A1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel9-operator\u0026tag=1779822919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3Aa57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-cluster-permission-rhel9\u0026tag=1779400071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3Adcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel9\u0026tag=1779932599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3A9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/console-rhel9\u0026tag=1779809308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3A3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator\u0026tag=1779870336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3Ae6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9\u0026tag=1779911795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3Aee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9\u0026tag=1779932259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3Aaa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel9\u0026tag=1779932081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3Af57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel9\u0026tag=1779324098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3Aa0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9\u0026tag=1779870337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3A077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/insights-client-rhel9\u0026tag=1779320359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3A43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel9\u0026tag=1779320334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3Ab5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9\u0026tag=1779320350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3A63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9\u0026tag=1779320365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3A63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel9\u0026tag=1779320388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3A3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel9\u0026tag=1780088779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3A2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel9\u0026tag=1779870361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3Ab819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel9\u0026tag=1780097863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3A79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9\u0026tag=1779320397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3A220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator\u0026tag=1779870369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3Aabffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel9\u0026tag=1779838775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3A9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9\u0026tag=1779406719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3A0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9\u0026tag=1779575354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3A2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel9\u0026tag=1779391737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3A06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel9\u0026tag=1779372633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3A21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/node-exporter-rhel9\u0026tag=1779320428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3A1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9\u0026tag=1779320385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3A2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9-operator\u0026tag=1779320369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3A8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/prometheus-rhel9\u0026tag=1779320480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3A83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9\u0026tag=1779992048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3A2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9\u0026tag=1779925174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3A900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel9\u0026tag=1779522930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3A7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel9\u0026tag=1779870400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3Aaa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/search-collector-rhel9\u0026tag=1779320410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3A273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel9\u0026tag=1779539089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3A681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel9\u0026tag=1779320377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3Ade75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel9\u0026tag=1779320398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3Aba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-siteconfig-rhel9\u0026tag=1779579457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3Ad6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel9\u0026tag=1779320574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3A297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/thanos-rhel9\u0026tag=1779320464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3A8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel9\u0026tag=1779522955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3Ab807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9\u0026tag=1779743308"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3A4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-cli-rhel9\u0026tag=1779372518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3Af0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel9\u0026tag=1779889321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3A484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel9-operator\u0026tag=1779822919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3Afca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-cluster-permission-rhel9\u0026tag=1779400071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3A1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel9\u0026tag=1779932599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3Afab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/console-rhel9\u0026tag=1779809308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3A43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator\u0026tag=1779870336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3A557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9\u0026tag=1779911795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3A6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9\u0026tag=1779932259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3Add6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel9\u0026tag=1779932081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3Aeb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel9\u0026tag=1779324098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3Ae611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9\u0026tag=1779870337"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3Afdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/insights-client-rhel9\u0026tag=1779320359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3Abb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel9\u0026tag=1779320334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3A9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9\u0026tag=1779320350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3Ab62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9\u0026tag=1779320365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3A7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel9\u0026tag=1779320388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3A60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel9\u0026tag=1780088779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3Aa983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel9\u0026tag=1779870361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3A3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel9\u0026tag=1780097863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3A7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9\u0026tag=1779320397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3A2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator\u0026tag=1779870369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3A541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel9\u0026tag=1779838775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3A2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9\u0026tag=1779406719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3Ace040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9\u0026tag=1779575354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3A6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel9\u0026tag=1779391737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3A4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel9\u0026tag=1779372633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3A1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/node-exporter-rhel9\u0026tag=1779320428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3Aff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9\u0026tag=1779320385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3A8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel9-operator\u0026tag=1779320369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3A50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/prometheus-rhel9\u0026tag=1779320480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3A57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9\u0026tag=1779992048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3Ac9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9\u0026tag=1779925174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3A28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel9\u0026tag=1779522930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3Ac1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel9\u0026tag=1779870400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3A45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/search-collector-rhel9\u0026tag=1779320410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3Af840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel9\u0026tag=1779539089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3A18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel9\u0026tag=1779320377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3Ad8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel9\u0026tag=1779320398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3A307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-siteconfig-rhel9\u0026tag=1779579457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3Afc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel9\u0026tag=1779320574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3A6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/thanos-rhel9\u0026tag=1779320464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3A3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel9\u0026tag=1779522955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3Af25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9\u0026tag=1779743308"
}
}
}
],
"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:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.13"
}
]
},
"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 Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_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 Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T19:14:07+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.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22645"
},
{
"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.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_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 Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:22265407b3f54b45e3f1b64bb55545e03e971d08e7c13dc0d0b1951588b0059d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:334c3a276d50ba3f6ab9b8fbba79ee84bef066e9b1752ffe07f556dfd40bf579_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:4b8be0b6eed11eaa92723e80de6b2b9c9399be19d7d83db4716df8e1df6fbc65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:70dc6843556f613ca489734cd2a922000799c398b668932b9904e7ece350d642_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:0fc48086410fb7ea51f6754222403a3ea5fe1d5fbe0c31e224668e650007c49d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a57c6351a2f413ffe9ac7c2d25ac0004bcd1fe11b7d05ecb65d0f4789ac062af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:e3c8b2278987fad086a694bfe4d14e45c5bfe2cee1c9b4c2332f8f6d53d48095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:fca6150c7e03703d36bc4a6e7267d11460381658f7a5bbb24e0a83ab6f80bf97_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:557b873819852db0156f191158ab087d600c5ab18e72af418b5e32906f447225_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:614087a70f143bfe24f8f4715ea1f52f0814c29a1be2076a31855966e57893a0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:ca598622075cb4d7d2fcc8babada3789383d4a04a805361a04991aca584447cc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:e6d2d50c38fbe047b3bcdcac7db2fa59d47923198755df4a7906247e8f28b1de_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:6374eb10c64ffcefeb28fbac459b3e41d10b322c1372ea3bb0fb9d41a480d77b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:66a57ca2bf1fd0fe18b6ab249bc5f26e2cb2e69197e41c1349dc1cb0954ead19_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:995b83f7ef5cae07d6512c0e3c64b7b60fde1e5cc2ac9888e71682d4609163df_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:ee14258f3b55f084729b108e47203b049a2ea1ab8efc06f2e32fe8212fbbb471_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2302a4c0235050fc6ca7580bd95ec22007d95c62dba6eb14e3d7eb82967c12e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:d6a2fe886c4e2fb5885e00c9f3f05d03fdb948341bf76aed55f4f873a9a75fc9_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:eb4070cec8227a522e64efa2949ae4d88c52c1f7ff4abda08cb8305bdcc95cdc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:f57d7ce0e09b3822f1fc02cf48c916611947a1e6b671278e7beb50bc9826babf_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:50a985dfc153232a149b6dd1496dbf865592faaff8ac98b897b38ef5255ccb71_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:562884215b0e8051bbbd847adb003891f02d1721bd418fceda13052baf5736f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:79ad89d72c684665f2b9749d4f780cab687a2c05534657d19f26569a7cff76f2_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7c7a41fb92c3a58de026d2bfbcf417c810b0d479f2889d692bf9c442bb5885e5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:06eb93b1cae1d0834e96127b6060fcce1355f1abdd308c4ff79fa24f3ccedd74_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:4c15d31293bbcc1010840b0fb0725921b02592a057c3da2cdf6406a1bc283d73_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:58dcbade227653c2d5020460d760adfe9cfdd49ab42bb0e9489e188ceaf4c1c3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:60a1ddeeb745fdfc1aa7621ffb6f8e648f026ef233d2472b9c42bda9b9ac8513_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2509d3c598dfafb9234f4dd74f5777b4e9f4feabdd2e513484f8c17ee652c24e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:2ced73d8443a58dfde3790fcdb0eed6ed4777ffa8ddcd3ac38723ac47b30cf0a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c704ce373d140fc5fae7f72f64b8f234b77ca0d04e3ed165e36dc6af38f50d0a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:c9034095d33267ce955b3dfb37bb7753826a3e09f5dee8b9268d72f55818a6ce_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:28b59ac91170d237457cae2d5ddf0701879d0491484fb337d0045466d8d7ee34_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4986ee137855ba7bbfb255fa751eeb38f84d4e9c08a5d07be5e8bbf5396c700d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:900c0597db0b4a2bebdaefabef61c37a6beb933005e184db892d41d4b0039c14_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:eefe6f3c567b46250365c80e2e5dc1ca6738d0768ebb2cb0e49766119f746c31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:03ba9c1f487eed40e0c40be98d0a8852ed42cfd643ca86f2158198ea540f515e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:214477738a94b7faba971d8cc0c8f23fbabaee5cfb4e2c14f01e1a2531018808_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:273ac320bd5240b762c4d8c9040c0b6201b5d75258a77d3568b1e9c64d9a3abc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:f840fdaa90cf9206fc69be7957f776d2d78165420da997ea850f6c9bcf9a1687_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:0c5e785cbad00dc1da3731f04cdf3b05636b0df9e18a0a673f4d2367fe11bf2e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:18f3482387a106c23e101802e733cb115b5d04987f52247580f176e09d77ab3d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:681759107e8ddb0acc5e9823857e183943373a3c711d13fbb72b0cb161829a2a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:72fb9f140cff74983cf9de20ce678152831a82ef10833a4f802d6896d44d4db4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d8dd23c834f2979be48ab481d177bd21d66b77ea1c917a1c0f715c0cf791f9b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:de75a6f86ed8688aaea0a87611f824c0bcde9a37eb13fef7e5585c37eefec32f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f5f2290ae6b7cb4ba41d456bec61e2791478d744440153c7dd28196b52f9054d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:fea636eb84bcf0b56a5e932eccdbc2b9921f4643ec9fb25318aecae87f69ad59_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0e2debd369555f3bde05f66d8cd120a3361e7cd0a9359f622d8e474992fd15e2_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:307373cdeaa44993150bc9cd568289e9701c64cfc656ca0d8525d8c224a0dbd7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:73084e0d2b814cb8cf1a2057530eede0bf7fcc763cf19f81aeb673164f3d0b19_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:ba33c292db1950719414eebab6afc5d3913e6962e19efb39d19931c1ca0106f3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:b807ff725a0c9306ff8175a551837f0abc3ddb6721c4e8242169713bc9600461_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:cb7f30a70138f5dff2da1bc8c3009acb8ca4b8626cac160c9ba30844383c2654_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:e381f4e9fe4885b54837972872f2a4c1f761986338664c8ac76fc218b2479530_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:f25be374a42862c8fd8a09b5474aebdc2c02a78e18e2791c3f4e756bddebeed1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:959362e4096558bd95404d7a0ef5ccc94e8652a0816c005f086243631a2b1579_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:da9c3095de47929e9dd20c4bfa226a35a1861aca81581517cea952f72efe1f9e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:e5b06fb4e00c8eeff574c9b9b11e44d09f0302a5e018416e5839fb6cb29d03c4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:f0f107b863ab711749c440f59d77d663e88ab06cc4346c4c8e3dac9011ff99cf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1fa9979534347f536381b657a2b6b2994b49d587d000967d68182964e7611856_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:484212b64021a494f775dd3358b95df13a875ce41411cfac643b0709689d2cfd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:580fc54d7c8aee802d2782cc494126f772c427e6be544d92f723b60e03a360ff_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:cd5da0c2d6029d0e85b3e62f611adabc30744dfdcfc564f30a133668e0796635_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:06e79a083ba8eb3a231164fe02ce231c8e780eb1bf089a401adeee5418358002_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1d664f8c2ef463a7539a2f17d70e9bee95e0663b43391d6bcc9ae6c1adb72ac8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:dcd952251828fdccafdf3bb99e9c2b6d47afa18691ce75f42b75a29d18bb3fec_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:ea9a7670a77fd7b1b990e3ad05414c6e6424efc071b3cccc6415ffa921b6edc3_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:1ab33d6cc9a994d607e4ccd22cb02013bfe0136d8d33b663151bf7efad66ee0f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:6c75db9d43ea7e9848cca6cf6598a647ec050bf4f892ea6d474ede846e0d9fdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:9bb530ac0aca53b1ac9ded83bd7f841171525ea1fb1bfce7a6bba6013a217b5e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/console-rhel9@sha256:fab9bb10b1ad51b0d34465b8a337b9dd3b62ba86ef9f81ea61103db5ab28bab1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3b2759ddb4e5f1a8ec39ec4df725b42cbdd3e5879f0714d94d196c198df1fa62_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:43649826d53ad6befeb1eeb373b8128e1045b831c6dfb51551634c21df955d08_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:a61e261cc7f0a7366d11ab55577a2720249ee002dd36202a28ae9394334d899b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:cfc6307363bf3d69623ab17a9c2900960685a672fc553d0bce827f4ce90cb2cd_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:68baa48ba8decc4e3a938c0908c7208e95cac71bd928917f77a13cfc7145f5c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:aa97d70e95a7e363e5bcb4957b03cafba45373874696cc073872ecbd8d8d7f81_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dca4c724b5ac6840f3a0533048c3c5bb38a8b035db7a297acb1f605e374d6d10_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:dd6aeeb5fa36451936c849b4147b86d81470db12d30b7b2574af17676bb4220d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:a0b0e1a94822f0945e557bf84515ee7d48e83d2018770b4a54d44309167e463b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:c01fa951ef9bee43583dd144f8d5db8a90e443985daca192a1ca4caccd0f257d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:db680db7b3fb9bb554d30d0878a7a310637950ea6c1b4122babc5ce6fb4ec4ab_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:e611bb223abe2f410c77a33961854e2b888bc9f0837563ebcd7cc4394f08f43f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:077f2c2d23e1afe583d095af8ce57f516d8ffe7ddbc18fc9d3445eba93ccfd44_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:2ce8bca9e1afc03ce3438b20c474663a686db0a6953c90ed3213bcb688f0d41d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:d43f369aa3379bc440d8da19f679430d314192eedff3736a0427e97c5c892add_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:fdd8dccba2793a8da0bd485bfa7d7d8caa4514f63339944531a3b323aea82229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:3d1ae5c79dff1a2cc4f299dfe27a057d7a338a895bd9cbb0549b228eb1d15cdf_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:43545acbf5a69112b45eeb5ffde430ce344740e4cd05a9bc9cd29ce0db7f91cc_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:bb4f9aca8e9ff94c5e5bd10f500de7938215ec5e039e3de73c51e75fba4d81ab_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:d9d40918ea89679cf616352ba6206b957e75d4f23474cab6711f162fc2313cc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:87ab0a73e2803b4fed000d03febb32191d4615a345c72b2cd3e52d9051a97261_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:9b1fced0b2f5912f82a25b9e65a5cae2d2e6a40ed92646407058dce35bc4a229_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:a0ffd5afd0447775cd684ffc376c39444ba3f585b5ba6a763313aff2ec49a5ff_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:b5d5bdfd2f6775c7c1675bf66570d278f9bf597d8e51c59391e95350d5921afd_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:447f4b37d703b2993eb4ea8fdd9ce21093cf9ff36dd58cbd206a7bcc6883defa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:63bcebb5cd6bdde749e975ce1bddffda9d0fc2704ea7c4c297d4f1fa1e24c5a0_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b62e69d5cda1775baec843f5e142a10e3008ffeaa620997bd4c54a5dd3f9c7d7_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:baa80a33b6756185400319b966bc7672be1082e6a347cb6a8228a49f1355d252_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:471b2be75bd85472c6bf2bc8834b5b7e54a7167f302b36c9237317cb7c67d259_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:63e20aca0fbccedb0aab695b151d641a76c962c53b1f31d6626afd56cf280224_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7243c47eadf77caf7fbcad41fa44263daf4361445428417b9fc9c061686ca324_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:7fa4bc51c0fcfd7cbe7573f83ca032e4e9fc6e83f31aaf0e4553c55617d20eb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:3cc6a1ab2ff13ef54d3fda8c9bd68efd6031d4cf1992b605aec8074e5932a48c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:60186c9eac5b1d633efca87e580d78567b439e8c8248600794a429b59f38d1f0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:9dbdeb51e75a902fdae6bc1f2308de2627a1547119355fa10a60db362dd65e0e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:c896e879663545e66fcfb6b578283b6e104fe8b9dbb017a103f4c8269ea101b1_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:2c292e66b767e6fd7c669679bebce0a4bf29d08c2b736d90f38a00e8c0ed6d3f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a983f5b3dcd52bd803c30814ce8220816210f0ddc130bae6e52caa74289020bb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:ba6c74b8cc3aa58d61b84c4938ff8b2d69ae41bd57ec4bcd1ea3ca83cf8227ad_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:f11c2bddc5ecedd411e4c1f4b1a3bfb7efd20edcb4c58950084947c18726c148_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:27e53591c55a6c560e11ec5a9c64523abebc3d19f37d3eef0fb15dcd321d84fc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:3ad3abe6b2de840961f753dbb662161bebd368da8f094afba0b30473f9d580cd_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:b819e74c5bcce08805749822bca37411e6fd4e59c742ec269405656ea3996104_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:c181c64b8903d84593d173887c57dc83962fe2b114b092dcb5dd709e0cdfb501_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:220799ea8392c4d82154323927fa15b0f70068114da08350be323276aad2f044_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:2a61dcccfaed79b3e30595ad41180d9fe6cf2a29b962614dc8bfdc8c37323745_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:4217c04f2bc9d1c49a8c1eae5b95698988c8e8e08f1108529744561048e26974_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:bea07598db58d79d238d2b24e2f1f1f5ebd2762c0cd9f94b9342032f8c232dcc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:426bac2070d17c288aa6dce5ab788a6962d2e358d69cac44978693bbf02295d4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:541a19c6f0e8857dc5e85aabfc5b4ce9e80532f842f8bd58b1e2723d56170eb4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:915ed0a6045ec679d53edd89a3494a5816f7858cf47cb76f5bbebd6838fe5497_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:abffe88b05416619f7bf728d1132091ffde97762481f48f7faba9765e8c0c804_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:2e40bb616b20f0098bdefa5c6984e8d24b256aa9db87165d67a1dd7202467896_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:655d2e7af198b640e0fac17fa0ae7cc420282affab1ab35a4d9f583eb1f6f095_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:9d9ec4e7b0b0f5f8384f8e9ca2657a4c1143035c291804f7a930f10f3ffa37f1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:caf6f9c68e12a0c0d82b731600059ebe2b710e71723ce0a9dba23e610e2a37c0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:0ba64b14aa1f49603b6e0ad6966694fbbc91ffb586a46f87662ea1a07f8903c9_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:b1bdbce28513190bb1af15a501617f631ac4f09cce945a44060c3d8065c2c991_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:ce040e947b211523371e51194797f9b11afac0aff9860dd5518a212dd148744d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:f9934f01dc7337d6f976106087b468104f7fc479b0ef16bcf04413eb7bf24458_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:2f1a70802cffb87a5339f48ec648f143eef4a6246ae47e3c0e3648de34f52700_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:56bb24c39ea329a6e4703f1efac1b1d0fc50c229e9ce1577eef923df218b18e0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:6cf08b8920c4af256709bc6d307707295d9fade3baba8ae80a13dd00e0ba3996_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:84d70926de3443b49919447ea6d227d36deec814e07fa3b37607df271faf2a2e_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1bb12c4981fa38df83d08ff1db84c8729d385431fec797630a6e20a5f58b255c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:1c6e5a5f843552c5166a70c7e321a12bd90217e6aefd6c133e820b244cf0c4ca_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:21bb526f7620d34584bb682a7fa7cfed109d22c340a583ce71a87d6db0705189_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:53d549bd5126b4dfc8d26750da4895667246c8e67097efd7f3a05418ef9fa5e4_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:217edb6d7990ff21c9ad401a5038865c67d7e27f6951538ec3540dfd986da038_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:2c404fd295489ec8d21a798de40a75237538d0895c533680085321cd822dabe5_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8ae7638846b71f1b7d9e39f3973f8ed4d17845166070528e8bf3239ce3d6579a_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:e0af5f7d9abc7a10c075fb0fdd0a12bca2e44ebc3b94f71ca73d54e277d7fdd0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1233faa9e820f9bf2d41470c053f25a8a03431ce5d23f3225c294d77219bae45_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:1d83981136954c241d35aed5f5a0f1ce00dfe05cd7f05e492441873abe3f6653_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:72560c594a17589280f4a2acf3dafc3a1dff9e130111c44f4ad847ad92b83631_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:ff271f1d21e5f1bca4ed5c772fef1b5dda54f6222de5cad52cc0e95e16f57fa1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:57fe2b5600a947ad7f44267b1f25e5fb29e7d2470b67899cca17d4ead005491c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:83d57a2508f838a79a6c22c707b4ddcb8d5612a751371fb29023dcda24ad2657_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b731d53e57e1299b4003ff51564516a00fec9b1f0f3c03ac3d574cb8d1f3124d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:e743ffee118063ed975e1f6d789de32a6127153355b87237fad1f358d0e5728a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:4c2741f209abdd74ab4a21d3b0c1df44f3813e9bc519d0f387b3ef636a604a50_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:50fa8879e7eec17303bda321db7f01f06fc1e5b51ff2a5209ed329c75407f17b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:77fd8af030ec8bea142852b6e83781e35a071ad776015082c6a18765ad87e087_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:8c4e7f754a89061cd82fbd6dfeb522f98a19e4b7e6027ba7cab7833e20761c97_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:7bbe432889a68baef48ae636cf55ea30c0341c71dc9c4dea2853a1dbc7c2d2af_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:c1ba9b5e5dc3957041e2c1c10cd4f864cad2307d6cc4fb91bd7683c27d6d02ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d5293d517e7aeb527e023c2167cd9c336213b46d88f0752b96b4b146347802e7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:d529f4c5361f3c5aa163f2e186f7aadad0f9655b1c6669e3a40ab86401d6990b_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:2e172e5405eca992eceedda76165be858db722644cd65262d9fe31dfb15c2696_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:45931561102699f797694942b81d933752b5c7133ffc53be52184cf7c986039f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a1346b755fd2bc39e1eba8850b3ef57049f1c7085239674ca99a304907d34389_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:aa80adf9084b4ff454be78d5f983abb87be2115f95496fe17425efee9ecfcd9d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:20ecd60116d6dd33360563fcc07d07f65a87390d07c46ea4aa5894a0d2d7e5f0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:8179e2d53c281666b97085cd244bbe2e8f4e99442695fcce1ed60ffc305b9d63_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:d6aa6a590473680f273c09159310fe961f1a8b0b9e8e0557eddac2aa0edfc802_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:fc677b76509d9af2ba711b723d77d98455d11f659922407fe860ff83ce129086_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:343a3f066975ec51b223af59142761ca5dbdfa672254c6c34bf70516331e8707_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:3a8226d664db72baed1f1ce5f49d6ad92f5b1cdda37be43f5bcd93bc36f91758_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:8d6500d5f765cc4ba8a2c34c6aacf3b6bad3670290d681e1c45b43f688aa746a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:aea0693751c8b42a60fa36a2cdacf623fb271c6a895de223aa7660e671de7cd2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:18fccbfa4cb89dbf463b91f0678244e5df24bf7a5ab61c50d6a3bbf2a3fc7d8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:297500152c9ce734175d8f538bf8a28b707b37d8d560c4b1391a36c6e7b9d2b6_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:6a01fa02898ba82cb9b775c0776407011a76b77a45c40b4b50044815a3d3ba4d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.13:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e80d35b9754770e66d3d7a2e61bcd903a996060dd74a1145c7e3c253dfc31df9_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:22689
Vulnerability from csaf_redhat - Published: 2026-06-02 21:10 - Updated: 2026-06-29 12:50A flaw was found in kin-openapi. This vulnerability allows excessive memory consumption via upload of a crafted ZIP file (a "ZIP bomb").
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_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: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "The multicluster engine for Kubernetes 2.8 General Availability release images,\nwhich add new features and enhancements, bug fixes, and updated container images.",
"title": "Topic"
},
{
"category": "general",
"text": "The multicluster engine for Kubernetes v2.8 images\n\nThe multicluster engine for Kubernetes provides the foundational components\nthat are necessary for the centralized management of multiple\nKubernetes-based clusters across data centers, public clouds, and private\nclouds.\n\nYou can use the engine to create new Red Hat OpenShift Container Platform\nclusters or to bring existing Kubernetes-based clusters under management by\nimporting them. After the clusters are managed, you can use the APIs that\nare provided by the engine to distribute configuration based on placement\npolicy.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:22689",
"url": "https://access.redhat.com/errata/RHSA-2026:22689"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-30153",
"url": "https://access.redhat.com/security/cve/CVE-2025-30153"
},
{
"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_22689.json"
}
],
"title": "Red Hat Security Advisory: multicluster engine for Kubernetes v2.8.7 security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:40+00:00",
"generator": {
"date": "2026-06-29T12:50:40+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22689",
"initial_release_date": "2026-06-02T21:10:58+00:00",
"revision_history": [
{
"date": "2026-06-02T21:10:58+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T21:11:07+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:40+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.8",
"product": {
"name": "multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_engine:2.8::el9"
}
}
}
],
"category": "product_family",
"name": "multicluster engine for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3A54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1779313361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3A1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1779551704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3A6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1779925097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3A546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1779406738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3A6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1779580030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3A6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1779406703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3A68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1779406740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3A42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1779281715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3A7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1779838760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3Ab626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1779406711"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3Af2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1779399536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3Aecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1779810262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3Aa7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1779551818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780085997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3Acfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1779406765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3Aba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1779800384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3A23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1779800422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3A8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1779494537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3Afd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1779406714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3A24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1779752279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3Ab11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1779838779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3A89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1779284690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3A116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1779313357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3Acd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1779406733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3Aee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1779313364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3A8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1779313353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3Aefcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1779313350"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3Ae103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1779313361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3A9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1779551704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3A4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1779925097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3A9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1779406738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3A14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1779580030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3Af6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1779406703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3A2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1779406740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3Afa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1779281715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3Aae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1779838760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3A4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1779406711"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3A40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1779399536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3Aa66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1779810262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3Ab927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1779551818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780085997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3Ac525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1779406765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3A747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1779800384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3A942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1779800422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3Ae3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1779494537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3A69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1779406714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3A60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1779752279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3A8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1779838779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3Aff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1779284690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3A114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1779313357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3Ac36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1779406733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3A0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1779313364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3A5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1779313353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3Ac8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1779313350"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3A5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1779313361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3Acef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1779551704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3A840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1779925097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3Aedb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1779406738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3A658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1779580030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3A66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1779406703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3Add3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1779406740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3A4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1779281715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3Aeabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1779838760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3A0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1779406711"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3A1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1779399536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3A07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1779810262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3Aab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1779551818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780085997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3A785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1779406765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3Aa92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1779800384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3A80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1779800422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3A9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1779494537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3A9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1779406714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3A5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1779752279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3A7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1779838779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3A81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1779284690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3A269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1779313357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3A46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1779406733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3A326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1779313364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3A1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1779313353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3Ab455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1779313350"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3Ac9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1779313361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3A0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1779551704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3A6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1779925097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3A44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1779406738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3A1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1779580030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3A3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1779406703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3A9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1779406740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3Acef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1779281715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3Aaa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1779838760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3A1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1779406711"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3A395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1779399536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3Ae876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1779810262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3A99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1779551818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780085997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3Adae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1779406765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3Abdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1779800384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3Af401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1779800422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3A7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1779494537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3A39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1779406714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3A5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1779752279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3A5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1779838779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3A424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1779284690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3Ad0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1779313357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3A707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1779406733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3A318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1779313364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3Afa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1779313353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3A11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1779313350"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64 as a component of multicluster engine for Kubernetes 2.8",
"product_id": "multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.8"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-30153",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2025-03-19T17:00:43.561523+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2353383"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in kin-openapi. This vulnerability allows excessive memory consumption via upload of a crafted ZIP file (a \"ZIP bomb\").",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/getkin/kin-openapi/openapi3filter: Improper Handling of Highly Compressed Data (Data Amplification) in github.com/getkin/kin-openapi/openapi3filter",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated 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.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-30153"
},
{
"category": "external",
"summary": "RHBZ#2353383",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2353383"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-30153",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-30153"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-30153",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-30153"
},
{
"category": "external",
"summary": "https://github.com/getkin/kin-openapi/blob/6da871e0e170b7637eb568c265c08bc2b5d6e7a3/openapi3filter/req_resp_decoder.go#L1275",
"url": "https://github.com/getkin/kin-openapi/blob/6da871e0e170b7637eb568c265c08bc2b5d6e7a3/openapi3filter/req_resp_decoder.go#L1275"
},
{
"category": "external",
"summary": "https://github.com/getkin/kin-openapi/blob/6da871e0e170b7637eb568c265c08bc2b5d6e7a3/openapi3filter/req_resp_decoder.go#L1523",
"url": "https://github.com/getkin/kin-openapi/blob/6da871e0e170b7637eb568c265c08bc2b5d6e7a3/openapi3filter/req_resp_decoder.go#L1523"
},
{
"category": "external",
"summary": "https://github.com/getkin/kin-openapi/commit/67f0b233ffc01332f7d993f79490fbea5f4455f1",
"url": "https://github.com/getkin/kin-openapi/commit/67f0b233ffc01332f7d993f79490fbea5f4455f1"
},
{
"category": "external",
"summary": "https://github.com/getkin/kin-openapi/security/advisories/GHSA-wq9g-9vfc-cfq9",
"url": "https://github.com/getkin/kin-openapi/security/advisories/GHSA-wq9g-9vfc-cfq9"
},
{
"category": "external",
"summary": "https://github.com/getkin/kin-openapi?tab=readme-ov-file#custom-content-type-for-body-of-http-requestresponse",
"url": "https://github.com/getkin/kin-openapi?tab=readme-ov-file#custom-content-type-for-body-of-http-requestresponse"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-3533",
"url": "https://pkg.go.dev/vuln/GO-2025-3533"
}
],
"release_date": "2025-03-19T16:03:26.947000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T21:10:58+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22689"
},
{
"category": "workaround",
"details": "Disable any endpoints in your OpenAPI schema that allows multipart/form-data or allows the uploading of a zipfile.",
"product_ids": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/getkin/kin-openapi/openapi3filter: Improper Handling of Highly Compressed Data (Data Amplification) in github.com/getkin/kin-openapi/openapi3filter"
},
{
"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.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_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": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T21:10:58+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22689"
},
{
"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.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:5001f350e9319cedda664adff989968f77c20825709342db8d04c2d530b088e8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:54cacd7dc26de4bdf49ccc187c756a20c7b58497bdca3d5d4df9fabeff4e2d6d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:c9d0fbad204db6c28723c0811e29c782fcf78177aa0c4cb76cf7e459d461e82b_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:e103a3784d1535e375d97589702d3998981e6f4bcf7b7a3b51a9c20435719bb1_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:4e7dd7f6d30cec72e2e8a3862e64f4e6ced0e68afe3750fe68ce17cf8d13b93c_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6a160f374da4e857295b19e865a55fd337e584fbcf241205327d91834701d3f6_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:6f8ad1c7816c085afe63afc086f23e7651865c8397aea1c9ff59d0b3990b8646_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:840c49f2cb28bf637428aa73a2d2d7d802e6a2363552457a9cbfc8ea4a25afcf_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:44ad772241a2bdf7b22e391abe0ac82beeb5f69d4f2d3230607009e0b1a35cef_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:546560f894ca950b74e8293f2e025b428ff906cf03ad2fd4fb5f37e27ee69174_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:9c6dd63a78d855f887aea95b27c20779247099c71753688c9923726a762a88a9_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:edb0a420440a04f83e8834e9d84dca877ac5114dd764aeeab5d29d7134baf5c5_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:14d4ec36b05faf321368d73e292e843fabe093141c6102a3a4ebffefc4457907_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:1c3a6b175b9970d3efc0e82747bc6cb40409c11b205cfdf5e7da5e21f453de18_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:658f8119b4fa0d05372c412aa2eb666fcc1af93bd1b43129c8bd974a32c6994c_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:6cda86b03482720fb426c2094e3f0175992657019ad4f018ea18f019c7f6159f_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:3bdb08c6e0b2ebb599b5a93fc731ff206f10a3ba663aafe8377a3ae50190cfaa_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:66d0d8a550f5f90d29516e40ca81b309a44723ba18195d5a3d5e56e2495b7069_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6c2148a6a037f97f1cb2bb57b0d7e791dd027e04a55c8519015ae066a27c2cf4_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:f6f1088553452a06f4632b7f6485dbe8bfa5e396881e018662f61be7ff5fbf1b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:2ecab1cef8696f2c0e400e25b9d45d32cd198a3e168b4534fcbb3c46b0327363_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:68e56d8b9e2715117e3dd89abfc9d7220a45fda0965086abcda4c1ad2b00fa36_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:9e2d59a0a587d6d23972a6e9fd16469aaa2448989cc86033e84d88e37f2cbc90_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dd3e4d5d3e9c255dc2b9bf3dc6675f5d6ee78c5afcc9b214da91be78842478b2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:42602795e2249ad279ec0d93ae80cb03f40a21969c3e1ca6350efc77b1da32ce_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:4fbaffb883d450382ad2c202b2372ee769fd1aae74289f4b301d05248f88f598_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:cef07c3fc4831e05dc541ceaaffac3f83c9aa4cae2c17704b0fd1b138def6a85_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:fa8de138c63a8cda91479c1373de7d8bf57c079c0d497247ce3d614ff74447b2_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:7b80adbd681f47b15cda7c93983744e6f82565f5e9fcc1b61419898cbce42d32_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:aa45a7baf8a9843e3863508e318c9acb414081d148a3a91a62a10746ca57d4da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:ae6032c8b07fa4a8fd4ab2cee2a3ea20a76350fe886d8c55a9a54a50b7cc317b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:eabc4693ff7cc6f91c7c281dbcd83607712a3d4d9d3021130b5c6a0bf53b5c88_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:0143ee81f30ed9b6f656e1fbab78dbd4b914984f98e9107ae571f018b624503b_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:1dd2991d68ecc5ac62e2e57ae44f3a8181e23c82be9307f445b7b4579accb984_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:4e8da75b60cca14573117b3258d3b93c0a3627ea779c762185d26385ed79d6d5_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:b626aeba61ae670ca62a40e79ba8cf8ef90eb34a82062592b9ac2fdbc6b88ca5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:1829e4e66dd3df8f4c7a6ceeb294645d1fec7b7e22e4d7e9176afd36ee91e251_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:395e29851b5cab1c4d1b0606cfed9f0b981194ce0027790209e54a81c7b2c5c8_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:40c2fc40fdf54acbb6e033392bf07679412d8da09870326180ad74443a606b5d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:f2adca072912dc7faacee6eda7be79425302b60dc3560fe50a40e5e64f940160_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:07da3babe8c8dace85d419ecb6d7fdd94a5b261139932531f99b7b0c6e24e6c6_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a66f77e31b57efb7f9756a7f26bf20cc7db29df8aab37bdb17c4074039be6e48_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:e876b2bb413672027bf5d85095a82c86e48c81c8a813b948b69860b3196c1d24_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:ecc06b5309b9d426c6e8702f5e5e56d5335e3647095b7ca152ee57aadf0ed874_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:99f69aa363b2048179f25878ed34aa14d8e010a733ff128e7cee6a734295fa16_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a7d3c8458499a6acb6afcbd54ba64c89a660f8c3321d1cf3e1946bb24fd682b5_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:ab148e939589ef43fdcd6f8d4eeb79a94283ac8ca85c686d56f8be948c20fca3_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:b927d6a4811ef03d8f7e6c0549834794451ee8815022004f4cd868491cfacfa0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:25fd1718573ae649b86c8f612fca717e2df2a031a3a45db592524fd19f63dfef_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:36664c86c6d2c88d8a42af4bfefd7a7f3ef7284391890e0f5c4c6f7dc1114ecc_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:7d652de160de884d1c9632e21ffa2f876510f2fa32c26e9991137eb5635ace82_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:8ceb1e1e158ec7d0dc99aa12d76db36db897c67f93f97f1ba9ec3345406d03f7_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:785ed1b58358014fc49b30872dfa27382773da3c38d2031695132cb59a1f8c73_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:c525c0d6e7f39b95f6729cddb289655e0ba664eeb66f764cca1036b3b6b655c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:cfcf71f40ad66d8c16d108109abc23a12020a6ee02ca4cdf058e29ce0c5a0ea3_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:dae4f1aa2fd3474f86208c87b483f9f2386df9971a0b8f9792d210c82c9e8fad_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:747606aa5c88f6c4a444b0eb526f6a600f8a2a514a7b7c8988ec4f161d925936_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:a92f818e71297614d71afc9d7b2bb946f73f9068f5a9fd7a5772799452cf22a8_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:ba8b70b363aef100d6f0323c0885f5e0927fd7cce39cb0031efd6745c2ffea65_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:bdfa3705353bce400a83bb4f97ecbb5b67a3fdf7a6b7d0f1e13a00ff7a84bed1_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:23cb35208c76442d28f8f5427fb7bca41d1647063d1a165c4ae311ca67f1ba95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:80ee654fb6241725fff893263ea9a1bd5b04763475eec7e6d0acdab81c577ac1_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:942331e485be78e4689f7091c2e57cc6d7968317c2975e3facdd25752892d2e8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:f401146b51e99537f38a4c86bd74cbd9c5651d7763dff41687e3170823612018_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:7dc23281962237bb18f91edbe6ab3c6513590d73ac52903678e382f9000fc311_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:8386d98f9678df55c55572d30d222a3213384a68a62c2ae31a874b8f856defdf_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:9175ef8584b52acd47d17899db520a58b06bc4b900777320a90b75d5a5274a0f_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:e3b1f015454044d3bcf7fe4afe23fecf9ffc7a3f35e3f819834ab70dc60e2bb0_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:39d567d21475215ae244c7f0b8ec0012f13d992b098ff9760d1864fe88a5fb97_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:69b3426182e57a0718bb506345f15052fddc2fa5747a01dde97d90997c8cefdf_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:9086a8b01635fc930b66271e043ee51f8f4b6acdd6496ff3c7be380ab2fef291_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:fd806f1051bae461945287d5f12b2589d40a19fe2272b130d5a8d8de3c8f600a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:24bf8efae0cc2002e4475b2f228e75b39a3146923a3c5c33a0750a8d69a5c7d1_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5cb7e29a813c814150b2fccbd067b33666aba266c259bba576dfe2f3b7a73dbe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:5dfe66f9256f2fd4b42a38bda70d008684eda2fb935b5375109984bc5e8a20da_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:60277b4fa6356f941f82581cfc9cc45bbc6873a67bb12bbac2d45d1b07a74a46_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:5af07bd416bc18041196f2175ee2503a59e9c7426cfeac2c8edae3346fb608b2_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:7f6a7908d764cd1ef0c190a706fdc6ab59abf498c1e6f84ed0e20bb085eaffcd_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:8cdabccc29e206490c69aeb2ce0e0e0211067fd2dc124f2c9593c456e313249d_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b11de4e6ba3489053d9a1118eea78f522f24598b752d88579ed803997c8beb26_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:424c26133ec510613f8377a6f31ce705643a51e9644992e92b453cf423dcace4_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:81aa07fa1a1eb08d66d2fa2bb76b06c21fee7a37de45180c976ebe564f69b28a_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:89d08abe6665b7c0e543fc4ac3c701d6c9143f77f3e68ae8ea07ed4ea99dfd2c_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:ff2c45b03d553cdbb1a3b51c61317c7a08aa8e4a4ec3e9afb56e366058d982fa_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:0d09116486f6bcb1b2d6d8c959911e841c665de06feacb8f994e472f3fa96ff3_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:1e721af200ec1b82b2052b6dd076689ffcefa82c6e95a17f3889ba38ed3a7182_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9f383ac85c21c2650fb3987f85558d212c751cd2a5e93fa02562eb99d53bfda8_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:cef2d91f9bb0fa25ba93d696c33200637383417a003813105a11dad7e0754d54_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:114cf3edbf87390f73adefabff90f1b1a1166f95084d97cc476d5f22927906f7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:116376ca5c3c6b0315ba9b9ddc297228417f84f03d5167cc78b66f6e6f49569d_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:269b77362e20304d870ffd12ee8041b99cdd30f04f1200c6b7af91b834d8cafe_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:d0c0916d002cd0bfd5852994bd3da21686605dcf4b4ba2727780633d17266100_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:46e8e7886f0cf89e7fc7aaf643d012486bf7fc07ff63211021aa70343ae16bb4_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:707895743277508df2fa7ea6eb08ad8d2fa2ae8f70228e4542b5951750f2fcce_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:c36155cdb5e37b8a0c99df5151b1787e65be77032edce005881cf8808d904c3b_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:cd9bb7eb807a1746cd475dba43450e3a0d543e65e84d3e3cb7094cffe9e4f53a_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1e37209d0fd8593e7e8cf34f41e372779334a4584412525b9f6129b9048bc4d2_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:5539f0b56f8156550ee2bd9d3222b3e40d9475f8c11074574998600a5abafe33_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:8583d3d5b77eae5d831cab06a83e9abfd549048c05e0dddd944978befa926c19_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:fa0b4aa1820680d60cb408dc45a8cc0ecd0843c4196a69548b6afb226060db21_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:0cc5e20ee5f282767b9d37fea20e671964d354900d22b0a4b08482f71062a1c7_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:318f6c1cacf91bfd35fea0b320250f53fe769198b5accf533588b851b33db5fc_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:326012973ac3cded428a780188de1e423146d7038f027cb7a65f79357091a955_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ee3e6218715e29e7179dcfc8f9d61977b4e23ee995d9df3a9f95707070feab95_amd64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:11889bac29dc096c08a56a15339e018cd42e54554bfc1418dc6884b24fba08eb_s390x",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b455cd90a30345d8c0a7e687be4d04dbbaea84cfdfe0a0667effcdc9b0816b66_ppc64le",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:c8bda85c12d6620ae315097050f074038ebfebff60f0d208cdcda384364eff63_arm64",
"multicluster engine for Kubernetes 2.8:registry.redhat.io/multicluster-engine/work-rhel9@sha256:efcedf15acb426cfaf89c933aef5e98b2ee532ace8801aedf568db17e4e0b6bd_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:22714
Vulnerability from csaf_redhat - Published: 2026-06-03 08:19 - Updated: 2026-06-29 12:50A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for osbuild-composer is now available for Red Hat Enterprise Linux 9.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "A service for building customized OS artifacts, such as VM images and OSTree commits, that uses osbuild under the hood. Besides building images for local usage, it can also upload images directly to cloud. It is compatible with composer-cli and cockpit-composer clients.\n\nSecurity Fix(es):\n\n* golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip (CVE-2025-61728)\n\n* golang: net/url: Memory exhaustion in query parameter parsing in net/url (CVE-2025-61726)\n\n* crypto/tls: Unexpected session resumption in crypto/tls (CVE-2025-68121)\n\n* crypto/x509: Incorrect enforcement of email constraints in crypto/x509 (CVE-2026-27137)\n\n* net/url: Incorrect parsing of IPv6 host literals in net/url (CVE-2026-25679)\n\n* github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message (CVE-2026-4427,GHSA-jqcq-xjh3-6g23)\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\n* github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server (CVE-2026-32286)\n\n* github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object (CVE-2026-34986)\n\n* golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root (CVE-2026-32282)\n\n* crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages (CVE-2026-32283)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:22714",
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2434431",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434431"
},
{
"category": "external",
"summary": "2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "2448626",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448626"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "RHEL-179251",
"url": "https://issues.redhat.com/browse/RHEL-179251"
},
{
"category": "external",
"summary": "RHEL-180018",
"url": "https://issues.redhat.com/browse/RHEL-180018"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_22714.json"
}
],
"title": "Red Hat Security Advisory: osbuild-composer security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:40+00:00",
"generator": {
"date": "2026-06-29T12:50:40+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22714",
"initial_release_date": "2026-06-03T08:19:01+00:00",
"revision_history": [
{
"date": "2026-06-03T08:19:01+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T08:19:01+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:40+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::appstream"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el9_8.src",
"product": {
"name": "osbuild-composer-0:165.1-2.el9_8.src",
"product_id": "osbuild-composer-0:165.1-2.el9_8.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el9_8?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el9_8?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el9_8?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-core-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el9_8?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el9_8?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el9_8.src as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src"
},
"product_reference": "osbuild-composer-0:165.1-2.el9_8.src",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:39.965024+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434431"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to be able to process a malicious zip archive with an application using the archive/zip package. Additionally, this vulnerability can cause a Go application to consume an excessive amount of CPU and memory, eventually resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61728"
},
{
"category": "external",
"summary": "RHBZ#2434431",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434431"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61728",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728"
},
{
"category": "external",
"summary": "https://go.dev/cl/736713",
"url": "https://go.dev/cl/736713"
},
{
"category": "external",
"summary": "https://go.dev/issue/77102",
"url": "https://go.dev/issue/77102"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4342",
"url": "https://pkg.go.dev/vuln/GO-2026-4342"
}
],
"release_date": "2026-01-28T19:30:31.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, implement a timeout in your archive/zip processing logic to abort the operation if it exceeds a few seconds, preventing the application from consuming an excessive amount of resources.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip"
},
{
"cve": "CVE-2025-68121",
"discovery_date": "2026-02-05T18:01:30.086058+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437111"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is a moderate flaw because it only occurs under specific conditions, such as TLS session resumption with runtime changes to certificate authority settings. Exploitation is not straightforward and requires a controlled setup. The impact is limited to certificate validation within the same component and does not affect system availability.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "RHBZ#2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68121",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://go.dev/cl/737700",
"url": "https://go.dev/cl/737700"
},
{
"category": "external",
"summary": "https://go.dev/issue/77217",
"url": "https://go.dev/issue/77217"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk",
"url": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4337",
"url": "https://pkg.go.dev/vuln/GO-2026-4337"
}
],
"release_date": "2026-02-05T17:48:44.141000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption"
},
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "RHBZ#2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32283",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32283"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://go.dev/cl/763767",
"url": "https://go.dev/cl/763767"
},
{
"category": "external",
"summary": "https://go.dev/issue/78334",
"url": "https://go.dev/issue/78334"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4870",
"url": "https://pkg.go.dev/vuln/GO-2026-4870"
}
],
"release_date": "2026-04-08T01:06:57.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T08:19:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22714"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-core-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-debugsource-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-tests-debuginfo-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-0:165.1-2.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:osbuild-composer-worker-debuginfo-0:165.1-2.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:22800
Vulnerability from csaf_redhat - Published: 2026-06-03 12:10 - Updated: 2026-06-29 12:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for topology-aware-lifecycle manager is available for Red Hat OpenShift Container Platform 4.21.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\nThis advisory contains the extra vran topology aware lifecycle manager images for Red Hat OpenShift Container Platform 4.21.\nAll OpenShift Container Platform users are advised to upgrade to these updated packages and images.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:22800",
"url": "https://access.redhat.com/errata/RHSA-2026:22800"
},
{
"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_22800.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.21 CNF vRAN extras topology aware lifecycle manager update",
"tracking": {
"current_release_date": "2026-06-29T12:50:41+00:00",
"generator": {
"date": "2026-06-29T12:50:41+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22800",
"initial_release_date": "2026-06-03T12:10:29+00:00",
"revision_history": [
{
"date": "2026-06-03T12:10:29+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T12:10:53+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:41+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.21",
"product": {
"name": "Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.21::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-rhel9-operator@sha256%3A9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator\u0026tag=1780126533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-aztp-rhel9@sha256%3A3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9\u0026tag=1780126514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-operator-bundle@sha256%3A9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle\u0026tag=1780131275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-precache-rhel9@sha256%3Aca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9\u0026tag=1780126476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-recovery-rhel9@sha256%3A434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9\u0026tag=1780126495"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:10:29+00:00",
"details": "For OpenShift Container Platform 4.21, see the following documentation for important instructions about upgrading your cluster and applying this asynchronous errata update:\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/index\nInformation about accessing this content is available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22800"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:3c360ca44835a7af1ef1ea4cbe803b5730bcadddfed2784b2d898efc10dc5c08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:9698159364350db7753c317c098ec008d73ab26796a7c400153b1a97607bc8c1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:ca8caf9b82221f9e1229934f55f26ed65636cba7d732f3c5b66a1c7ebedb5b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:434fc75ae6d93dbffaca9aec0939e0540dc5ed9fd13c5a6c7ec979196708eb16_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:9aee6301248bbbfba3858f4d16bc5084c59c299926f35df58a1c97658b828e44_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:22937
Vulnerability from csaf_redhat - Published: 2026-06-03 19:03 - Updated: 2026-06-29 12:50A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
|
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for image-builder is now available for Red Hat Enterprise Linux 10.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "A local binary for building customized OS artifacts such as VM images and OSTree commits. Uses osbuild under the hood.\n\nSecurity Fix(es):\n\n* golang: net/url: Memory exhaustion in query parameter parsing in net/url (CVE-2025-61726)\n\n* crypto/tls: Unexpected session resumption in crypto/tls (CVE-2025-68121)\n\n* crypto/x509: Incorrect enforcement of email constraints in crypto/x509 (CVE-2026-27137)\n\n* net/url: Incorrect parsing of IPv6 host literals in net/url (CVE-2026-25679)\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\n* github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object (CVE-2026-34986)\n\n* golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root (CVE-2026-32282)\n\n* crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages (CVE-2026-32283)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:22937",
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "RHEL-179248",
"url": "https://issues.redhat.com/browse/RHEL-179248"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_22937.json"
}
],
"title": "Red Hat Security Advisory: image-builder security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:41+00:00",
"generator": {
"date": "2026-06-29T12:50:41+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22937",
"initial_release_date": "2026-06-03T19:03:32+00:00",
"revision_history": [
{
"date": "2026-06-03T19:03:32+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T19:03:32+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:41+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.2"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el10_2.s390x",
"product": {
"name": "image-builder-0:52.1-1.el10_2.s390x",
"product_id": "image-builder-0:52.1-1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el10_2.s390x",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.s390x",
"product_id": "image-builder-debugsource-0:52.1-1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"product_id": "image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el10_2?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el10_2.x86_64",
"product": {
"name": "image-builder-0:52.1-1.el10_2.x86_64",
"product_id": "image-builder-0:52.1-1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el10_2.x86_64",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.x86_64",
"product_id": "image-builder-debugsource-0:52.1-1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"product_id": "image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el10_2?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el10_2.src",
"product": {
"name": "image-builder-0:52.1-1.el10_2.src",
"product_id": "image-builder-0:52.1-1.el10_2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el10_2?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el10_2.aarch64",
"product": {
"name": "image-builder-0:52.1-1.el10_2.aarch64",
"product_id": "image-builder-0:52.1-1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"product_id": "image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"product_id": "image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el10_2?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el10_2.ppc64le",
"product": {
"name": "image-builder-0:52.1-1.el10_2.ppc64le",
"product_id": "image-builder-0:52.1-1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"product_id": "image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"product_id": "image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el10_2?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64"
},
"product_reference": "image-builder-0:52.1-1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le"
},
"product_reference": "image-builder-0:52.1-1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x"
},
"product_reference": "image-builder-0:52.1-1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src"
},
"product_reference": "image-builder-0:52.1-1.el10_2.src",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64"
},
"product_reference": "image-builder-0:52.1-1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-68121",
"discovery_date": "2026-02-05T18:01:30.086058+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437111"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is a moderate flaw because it only occurs under specific conditions, such as TLS session resumption with runtime changes to certificate authority settings. Exploitation is not straightforward and requires a controlled setup. The impact is limited to certificate validation within the same component and does not affect system availability.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "RHBZ#2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68121",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://go.dev/cl/737700",
"url": "https://go.dev/cl/737700"
},
{
"category": "external",
"summary": "https://go.dev/issue/77217",
"url": "https://go.dev/issue/77217"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk",
"url": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4337",
"url": "https://pkg.go.dev/vuln/GO-2026-4337"
}
],
"release_date": "2026-02-05T17:48:44.141000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "RHBZ#2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32283",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32283"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://go.dev/cl/763767",
"url": "https://go.dev/cl/763767"
},
{
"category": "external",
"summary": "https://go.dev/issue/78334",
"url": "https://go.dev/issue/78334"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4870",
"url": "https://pkg.go.dev/vuln/GO-2026-4870"
}
],
"release_date": "2026-04-08T01:06:57.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:03:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22937"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.src",
"AppStream-10.2.Z:image-builder-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debuginfo-0:52.1-1.el10_2.x86_64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.aarch64",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.ppc64le",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.s390x",
"AppStream-10.2.Z:image-builder-debugsource-0:52.1-1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:22959
Vulnerability from csaf_redhat - Published: 2026-06-03 19:06 - Updated: 2026-06-29 12:50A 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 Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64 | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_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 Web Terminal Operator 1.14.0 has been released.",
"title": "Topic"
},
{
"category": "general",
"text": "The Web Terminal provides a way to access a fully in-browser terminal emulator within the OpenShift Console. Command-line tools for interacting with the OpenShift cluster are pre-installed.",
"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:22959",
"url": "https://access.redhat.com/errata/RHSA-2026:22959"
},
{
"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-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://redhat.atlassian.net/browse/WTO-397",
"url": "https://redhat.atlassian.net/browse/WTO-397"
},
{
"category": "external",
"summary": "https://redhat.atlassian.net/browse/WTO-404",
"url": "https://redhat.atlassian.net/browse/WTO-404"
},
{
"category": "external",
"summary": "https://redhat.atlassian.net/browse/WTO-415",
"url": "https://redhat.atlassian.net/browse/WTO-415"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_22959.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Web Terminal Operator 1.14.0 release.",
"tracking": {
"current_release_date": "2026-06-29T12:50:42+00:00",
"generator": {
"date": "2026-06-29T12:50:42+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22959",
"initial_release_date": "2026-06-03T19:06:28+00:00",
"revision_history": [
{
"date": "2026-06-03T19:06:28+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T19:06:32+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:42+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Web Terminal 1.14",
"product": {
"name": "Red Hat Web Terminal 1.14",
"product_id": "Red Hat Web Terminal 1.14",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:webterminal:1.14::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Web Terminal"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-exec-rhel9@sha256%3Aaaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-exec-rhel9\u0026tag=1780424928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-rhel9-operator@sha256%3A4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-rhel9-operator\u0026tag=1780425083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-operator-bundle@sha256%3Ab718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-operator-bundle\u0026tag=1780424938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-tooling-rhel9@sha256%3A7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-tooling-rhel9\u0026tag=1780424967"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64 as a component of Red Hat Web Terminal 1.14",
"product_id": "Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64 as a component of Red Hat Web Terminal 1.14",
"product_id": "Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64 as a component of Red Hat Web Terminal 1.14",
"product_id": "Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64 as a component of Red Hat Web Terminal 1.14",
"product_id": "Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.14"
}
]
},
"vulnerabilities": [
{
"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 Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64"
],
"known_not_affected": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:06:28+00:00",
"details": "To start using the Web Terminal Operator, install the Web Terminal Operator from OpenShift OperatorHub on OpenShift Container Platform 4.19 or higher.",
"product_ids": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22959"
}
],
"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 Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"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 Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_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 Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
],
"known_not_affected": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:06:28+00:00",
"details": "To start using the Web Terminal Operator, install the Web Terminal Operator from OpenShift OperatorHub on OpenShift Container Platform 4.19 or higher.",
"product_ids": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22959"
},
{
"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 Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_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 Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_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-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64"
],
"known_not_affected": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:06:28+00:00",
"details": "To start using the Web Terminal Operator, install the Web Terminal Operator from OpenShift OperatorHub on OpenShift Container Platform 4.19 or higher.",
"product_ids": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22959"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:aaa925acd7b21f923fe19c7feb91ec96218f873a38263d4a4bcea2e773b06444_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:b718e8e78ab364206bd889c7b4aba01b0475cb804dc361b54ad99331399587fd_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:4f71ca0ae28fb645ef2dd66b15f4995cb4411368918c4da28b31d818102fed55_amd64",
"Red Hat Web Terminal 1.14:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:7c5797371cb33199e0a9494bd82da2c4bf05ce045598640af33097fbee2ce90a_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
}
]
}
RHSA-2026:22961
Vulnerability from csaf_redhat - Published: 2026-06-03 19:07 - Updated: 2026-06-29 12:50A 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 Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64 | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64 | — | ||
| Unresolved product id: Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_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 Web Terminal Operator 1.15.0 has been released.",
"title": "Topic"
},
{
"category": "general",
"text": "The Web Terminal provides a way to access a fully in-browser terminal emulator within the OpenShift Console. Command-line tools for interacting with the OpenShift cluster are pre-installed.",
"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:22961",
"url": "https://access.redhat.com/errata/RHSA-2026:22961"
},
{
"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-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://redhat.atlassian.net/browse/WTO-398",
"url": "https://redhat.atlassian.net/browse/WTO-398"
},
{
"category": "external",
"summary": "https://redhat.atlassian.net/browse/WTO-405",
"url": "https://redhat.atlassian.net/browse/WTO-405"
},
{
"category": "external",
"summary": "https://redhat.atlassian.net/browse/WTO-416",
"url": "https://redhat.atlassian.net/browse/WTO-416"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_22961.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Web Terminal Operator 1.15.0 release.",
"tracking": {
"current_release_date": "2026-06-29T12:50:42+00:00",
"generator": {
"date": "2026-06-29T12:50:42+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22961",
"initial_release_date": "2026-06-03T19:07:53+00:00",
"revision_history": [
{
"date": "2026-06-03T19:07:53+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T19:07:56+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:42+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Web Terminal 1.15",
"product": {
"name": "Red Hat Web Terminal 1.15",
"product_id": "Red Hat Web Terminal 1.15",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:webterminal:1.15::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Web Terminal"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-exec-rhel9@sha256%3A5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-exec-rhel9\u0026tag=1780424829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-rhel9-operator@sha256%3A5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-rhel9-operator\u0026tag=1780424901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-operator-bundle@sha256%3A0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-operator-bundle\u0026tag=1780424850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64",
"product": {
"name": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64",
"product_id": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/web-terminal-tooling-rhel9@sha256%3A0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8?arch=amd64\u0026repository_url=registry.redhat.io/web-terminal/web-terminal-tooling-rhel9\u0026tag=1780424868"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64 as a component of Red Hat Web Terminal 1.15",
"product_id": "Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64 as a component of Red Hat Web Terminal 1.15",
"product_id": "Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64 as a component of Red Hat Web Terminal 1.15",
"product_id": "Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64 as a component of Red Hat Web Terminal 1.15",
"product_id": "Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
},
"product_reference": "registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64",
"relates_to_product_reference": "Red Hat Web Terminal 1.15"
}
]
},
"vulnerabilities": [
{
"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 Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64"
],
"known_not_affected": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:07:53+00:00",
"details": "To start using the Web Terminal Operator, install the Web Terminal Operator from OpenShift OperatorHub on OpenShift Container Platform 4.20 or higher.",
"product_ids": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22961"
}
],
"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 Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"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 Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_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 Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
],
"known_not_affected": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:07:53+00:00",
"details": "To start using the Web Terminal Operator, install the Web Terminal Operator from OpenShift OperatorHub on OpenShift Container Platform 4.20 or higher.",
"product_ids": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22961"
},
{
"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 Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_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 Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_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-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64"
],
"known_not_affected": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T19:07:53+00:00",
"details": "To start using the Web Terminal Operator, install the Web Terminal Operator from OpenShift OperatorHub on OpenShift Container Platform 4.20 or higher.",
"product_ids": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22961"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-exec-rhel9@sha256:5befa6458e607653380dd9eb365716303b7deba759313849213367a3b56d8fcd_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-operator-bundle@sha256:0e48134439b90bf039806daf1b4446ea047c0f55638fb273b12493c038aae065_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-rhel9-operator@sha256:5a1940fa7577523dc3d1e1435e48e496abdcc7303552a418614ec4137f64e040_amd64",
"Red Hat Web Terminal 1.15:registry.redhat.io/web-terminal/web-terminal-tooling-rhel9@sha256:0cd46a662d9a8ced0bd3145d49c7b02465acb6c3a985d0857f7592a6ee7a95e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
}
]
}
RHSA-2026:23228
Vulnerability from csaf_redhat - Published: 2026-06-04 13:27 - Updated: 2026-06-29 12:50A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
|
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for image-builder is now available for Red Hat Enterprise Linux 9.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "A local binary for building customized OS artifacts such as VM images and OSTree commits. Uses osbuild under the hood.\n\nSecurity Fix(es):\n\n* golang: net/url: Memory exhaustion in query parameter parsing in net/url (CVE-2025-61726)\n\n* crypto/tls: Unexpected session resumption in crypto/tls (CVE-2025-68121)\n\n* crypto/x509: Incorrect enforcement of email constraints in crypto/x509 (CVE-2026-27137)\n\n* net/url: Incorrect parsing of IPv6 host literals in net/url (CVE-2026-25679)\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\n* github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object (CVE-2026-34986)\n\n* golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root (CVE-2026-32282)\n\n* crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages (CVE-2026-32283)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:23228",
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "RHEL-141689",
"url": "https://issues.redhat.com/browse/RHEL-141689"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_23228.json"
}
],
"title": "Red Hat Security Advisory: image-builder security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:43+00:00",
"generator": {
"date": "2026-06-29T12:50:43+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:23228",
"initial_release_date": "2026-06-04T13:27:44+00:00",
"revision_history": [
{
"date": "2026-06-04T13:27:44+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-04T13:27:44+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:43+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::appstream"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el9_8.x86_64",
"product": {
"name": "image-builder-0:52.1-1.el9_8.x86_64",
"product_id": "image-builder-0:52.1-1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el9_8.x86_64",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.x86_64",
"product_id": "image-builder-debugsource-0:52.1-1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"product_id": "image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el9_8?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el9_8.src",
"product": {
"name": "image-builder-0:52.1-1.el9_8.src",
"product_id": "image-builder-0:52.1-1.el9_8.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el9_8?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el9_8.aarch64",
"product": {
"name": "image-builder-0:52.1-1.el9_8.aarch64",
"product_id": "image-builder-0:52.1-1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"product_id": "image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"product_id": "image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el9_8?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el9_8.ppc64le",
"product": {
"name": "image-builder-0:52.1-1.el9_8.ppc64le",
"product_id": "image-builder-0:52.1-1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"product_id": "image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"product_id": "image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el9_8?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "image-builder-0:52.1-1.el9_8.s390x",
"product": {
"name": "image-builder-0:52.1-1.el9_8.s390x",
"product_id": "image-builder-0:52.1-1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder@52.1-1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "image-builder-debugsource-0:52.1-1.el9_8.s390x",
"product": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.s390x",
"product_id": "image-builder-debugsource-0:52.1-1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debugsource@52.1-1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"product": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"product_id": "image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/image-builder-debuginfo@52.1-1.el9_8?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64"
},
"product_reference": "image-builder-0:52.1-1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le"
},
"product_reference": "image-builder-0:52.1-1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x"
},
"product_reference": "image-builder-0:52.1-1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el9_8.src as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src"
},
"product_reference": "image-builder-0:52.1-1.el9_8.src",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-0:52.1-1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64"
},
"product_reference": "image-builder-0:52.1-1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debuginfo-0:52.1-1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64"
},
"product_reference": "image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "image-builder-debugsource-0:52.1-1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
},
"product_reference": "image-builder-debugsource-0:52.1-1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-68121",
"discovery_date": "2026-02-05T18:01:30.086058+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437111"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is a moderate flaw because it only occurs under specific conditions, such as TLS session resumption with runtime changes to certificate authority settings. Exploitation is not straightforward and requires a controlled setup. The impact is limited to certificate validation within the same component and does not affect system availability.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "RHBZ#2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68121",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://go.dev/cl/737700",
"url": "https://go.dev/cl/737700"
},
{
"category": "external",
"summary": "https://go.dev/issue/77217",
"url": "https://go.dev/issue/77217"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk",
"url": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4337",
"url": "https://pkg.go.dev/vuln/GO-2026-4337"
}
],
"release_date": "2026-02-05T17:48:44.141000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "RHBZ#2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32283",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32283"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://go.dev/cl/763767",
"url": "https://go.dev/cl/763767"
},
{
"category": "external",
"summary": "https://go.dev/issue/78334",
"url": "https://go.dev/issue/78334"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4870",
"url": "https://pkg.go.dev/vuln/GO-2026-4870"
}
],
"release_date": "2026-04-08T01:06:57.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T13:27:44+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.src",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debuginfo-0:52.1-1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:image-builder-debugsource-0:52.1-1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:23234
Vulnerability from csaf_redhat - Published: 2026-06-11 07:31 - Updated: 2026-06-29 12:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le | — |
Workaround
|
A flaw was found in Distribution, a toolkit used for managing container content. When specific caching and deletion features are enabled, a remote attacker can exploit a vulnerability that allows previously deleted content to become readable again. This occurs because the system does not fully remove all references to the deleted data, leading to unauthorized information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.15.65 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.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 container images for Red Hat OpenShift Container Platform 4.15.65. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:23232\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:23234",
"url": "https://access.redhat.com/errata/RHSA-2026:23234"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35172",
"url": "https://access.redhat.com/security/cve/CVE-2026-35172"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_23234.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.15.65 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:44+00:00",
"generator": {
"date": "2026-06-29T12:50:44+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:23234",
"initial_release_date": "2026-06-11T07:31:39+00:00",
"revision_history": [
{
"date": "2026-06-11T07:31:39+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-11T07:33:17+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:44+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.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-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779916245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779915729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel8@sha256%3A7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8\u0026tag=1779915540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779916378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779916500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779917175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779916927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779917189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779916632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests@sha256%3Ad6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests\u0026tag=1780459378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ac121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779916289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Afb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779915501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Acccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779915497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ac5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779916291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779915668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779915471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Ad558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779915527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel8-operator@sha256%3A6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator\u0026tag=1779915534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Aa6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779915852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Af5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779888355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780458376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel8@sha256%3A843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8\u0026tag=1779916174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Aa1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779887511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager@sha256%3Adacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager\u0026tag=1779887620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter@sha256%3Ad4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus@sha256%3A14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779917258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-node-label-updater-rhel9@sha256%3A90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9\u0026tag=1779915901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780458100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Ab1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780458063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779888160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Aa1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779887621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ae1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779915747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy@sha256%3A80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779917148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel8@sha256%3A7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8\u0026tag=1778761373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni@sha256%3A2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni\u0026tag=1779916932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Aa4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779888395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779915949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ad7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779916439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder@sha256%3Ac35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder\u0026tag=1779887735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli@sha256%3A00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli\u0026tag=1780060291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console@sha256%3A3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console\u0026tag=1780082271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779917366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer@sha256%3A4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer\u0026tag=1780061375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router@sha256%3A68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router\u0026tag=1780458932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Aef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779888565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Aab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779915809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779917579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779917062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779917257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel8@sha256%3A0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8\u0026tag=1779888466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ab6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779915499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779915508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel8@sha256%3A11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8\u0026tag=1780062712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel8@sha256%3Af8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8\u0026tag=1780062527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Aae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780458124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel8@sha256%3Afcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8\u0026tag=1779916362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779916617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-cloud-controller-manager-rhel9@sha256%3A83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9\u0026tag=1779915514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-cloud-csi-driver-container-rhel9@sha256%3A32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9\u0026tag=1779915834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256%3A5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8\u0026tag=1779915520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-machine-controllers-rhel9@sha256%3A250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9\u0026tag=1779915519"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779916390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Abd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779888433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Ab751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779915921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Aad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779915724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ac39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779915560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Acaa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779915526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779915741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779915685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Aaf6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779915672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Acff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779915696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel8-operator@sha256%3Af8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator\u0026tag=1779915536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel8@sha256%3Ae8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8\u0026tag=1779915633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel8@sha256%3Aeb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8\u0026tag=1779924506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Ac2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779917075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts@sha256%3A3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts\u0026tag=1780062738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-operator@sha256%3A4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator\u0026tag=1779916323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel8@sha256%3A37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8\u0026tag=1779917392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Af63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779916949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779917112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ae86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779915469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Ab547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779916481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Af5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779888352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ad88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780060026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aaa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779915706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ada9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779915566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779916943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779917076"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779915498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779917368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ab28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779915806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ae6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779917198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779917252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Acfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779888360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Aa5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779916339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ad320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779916516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779888348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-operator-rhel8@sha256%3Af0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8\u0026tag=1779917250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779915517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779916344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8-operator@sha256%3Abe7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator\u0026tag=1779888442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-platform-operators-manager-rhel9@sha256%3Aa16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9\u0026tag=1779916395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779887514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aa133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779888288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel8@sha256%3Ac9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8\u0026tag=1779888532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3Af7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1779917180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-operator-rhel8@sha256%3Abb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8\u0026tag=1779915491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1779915474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3A7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3A7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ac43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779888365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Acd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779888351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779917033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779916143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ad586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779915563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ad3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779916257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel8@sha256%3Af1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8\u0026tag=1779916744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Abf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779915827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ab9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779971974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256%3A651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8\u0026tag=1779915858"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Af8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779916420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779915621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel8@sha256%3A907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8\u0026tag=1779915632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ac0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779916428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer@sha256%3Ad00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer\u0026tag=1780060797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel8@sha256%3A5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel8\u0026tag=1779888974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts@sha256%3Aaacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts\u0026tag=1779924483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel8@sha256%3A7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel8\u0026tag=1779915502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779917287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ad9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779917225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel8@sha256%3A189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8\u0026tag=1779888513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780458131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779916379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779915635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779888438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779916507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ae8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779916898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-operator@sha256%3A5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-operator\u0026tag=1779888570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel8@sha256%3Aab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8\u0026tag=1780064660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779917249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel8@sha256%3Af1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8\u0026tag=1779887572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel8@sha256%3A233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8\u0026tag=1779887582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather@sha256%3A1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather\u0026tag=1780059839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel8@sha256%3A3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8\u0026tag=1779916230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779916888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel8@sha256%3A924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel8\u0026tag=1780459245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1779915462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3Aaaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1779888354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ad8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779917505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel8@sha256%3Aa03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8\u0026tag=1779916938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel8@sha256%3Aab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8\u0026tag=1779917276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel8@sha256%3A7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8\u0026tag=1779916427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Adf87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779917584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ad902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779916498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779916998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8-operator@sha256%3A70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator\u0026tag=1779888460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779915689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Aafd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779915723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ab517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780062385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779916611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-operator-rhel8@sha256%3Ad5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8\u0026tag=1779916750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3Aaf59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779915548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3Afa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel8@sha256%3A6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3A1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1779916402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779917334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel8@sha256%3Acbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel8\u0026tag=1780458086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1779915515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1779915515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256%3Acde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8\u0026tag=1779888459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256%3Acde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8\u0026tag=1779888459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1779915472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Ac44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1779888360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ae505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779917800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy@sha256%3A0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy\u0026tag=1779887612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779916871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779916471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779915736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779917027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel8@sha256%3Ad9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8\u0026tag=1779917665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1779915519"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Ac3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1779915488"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779916245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Ac0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779915729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel8@sha256%3A48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8\u0026tag=1779915540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779916378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779916500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Afca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779917175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ae3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779916927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779917189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779916632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Aed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779916289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ad8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779915501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779915497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Afc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779916291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ad3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779915668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779915471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3Aa7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3Aa7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Ac2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779888355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780458376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel8@sha256%3Aa179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8\u0026tag=1779916174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779887511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager@sha256%3A8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager\u0026tag=1779887620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests@sha256%3A4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests\u0026tag=1780459378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter@sha256%3A7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus@sha256%3A6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Afe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779917258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780458100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780458063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779888160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779887621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779915747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy@sha256%3A4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779917148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel8@sha256%3Ac44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8\u0026tag=1778761373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni@sha256%3A272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni\u0026tag=1779916932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ad89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779888395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779915949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ad78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779916439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder@sha256%3Aaec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder\u0026tag=1779887735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli@sha256%3Ac5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli\u0026tag=1780060291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console@sha256%3Ad0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console\u0026tag=1780082271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779917366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer@sha256%3Aff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer\u0026tag=1780061375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router@sha256%3A3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router\u0026tag=1780458932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Aa90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779888565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779915809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779917579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779917062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ab70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779917257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel8@sha256%3A82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8\u0026tag=1779888466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779915499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779915508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel8@sha256%3Ae9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8\u0026tag=1780062712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel8@sha256%3Afb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8\u0026tag=1780062527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780458124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel8@sha256%3Afb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8\u0026tag=1779916362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ac14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779916617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779916390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779888433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Abe7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779915921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Acb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779915724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ad72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779915560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779915526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Afa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779915741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Ad5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779915685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Aca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779915672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Ac9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779915696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel8-operator@sha256%3A86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator\u0026tag=1779915536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel8@sha256%3A8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8\u0026tag=1779915633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel8@sha256%3Ae69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8\u0026tag=1779924506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779917075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts@sha256%3A2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts\u0026tag=1780062738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-operator@sha256%3A3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator\u0026tag=1779916323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel8@sha256%3A92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8\u0026tag=1779917392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ae2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779916949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779917112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779915469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779916481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779888352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Af881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780060026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ac3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779915706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779915566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ab0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779916943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ab959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779917076"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ad5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779915498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ae15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779917368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779915806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779917198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779917252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779888360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779916339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779916516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779888348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-operator-rhel8@sha256%3Aed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8\u0026tag=1779917250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aeeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779915517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779916344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8-operator@sha256%3A4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator\u0026tag=1779888442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-platform-operators-manager-rhel9@sha256%3A6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9\u0026tag=1779916395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779887514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ab510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779888288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel8@sha256%3A2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8\u0026tag=1779888532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3A604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1779917180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-operator-rhel8@sha256%3A7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8\u0026tag=1779915491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3Adbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1779915474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3A84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3A84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ad22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779888365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ac7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779888351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ab4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779917033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3Af67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779916143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779915563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779916257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel8@sha256%3A0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8\u0026tag=1779916744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel8@sha256%3Acff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8\u0026tag=1779915632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ae84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779916428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer@sha256%3A407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer\u0026tag=1780060797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel8@sha256%3Ad9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel8\u0026tag=1779888974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts@sha256%3A87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts\u0026tag=1779924483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel8@sha256%3A052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel8\u0026tag=1779915502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779917287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779917225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel8@sha256%3A52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8\u0026tag=1779888513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780458131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779916379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779915635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Adac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779888438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779916507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779916898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-operator@sha256%3Ae15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-operator\u0026tag=1779888570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel8@sha256%3Ad8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8\u0026tag=1780064660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779917249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel8@sha256%3Af7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8\u0026tag=1779887572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel8@sha256%3Affca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8\u0026tag=1779887582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather@sha256%3A6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather\u0026tag=1780059839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel8@sha256%3A4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8\u0026tag=1779916230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779916888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel8@sha256%3Ae9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel8\u0026tag=1780459245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779917505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel8@sha256%3Adcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8\u0026tag=1779916938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel8@sha256%3Ab23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8\u0026tag=1779917276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel8@sha256%3Affba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8\u0026tag=1779916427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779917584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779916498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Acdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779916998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8-operator@sha256%3A8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator\u0026tag=1779888460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779915689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779915723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780062385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3A9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel8@sha256%3Aa8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3A4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1779916402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779917334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel8@sha256%3A9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel8\u0026tag=1780458086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779917800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy@sha256%3A125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy\u0026tag=1779887612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aa1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779916871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Af92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779916471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779915736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779917027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel8@sha256%3A977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8\u0026tag=1779917665"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779916245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Aca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779916378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Ab7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779916500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ad70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779917175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779916927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ada4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779917189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779916632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ae04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779916289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779915501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Aa5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779915497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779916291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ad03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779915668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779915471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3Ad18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3Ad18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3Aff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3Aff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779888355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780458376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel8@sha256%3Ac4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8\u0026tag=1779916174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Af5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779887511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager@sha256%3Afc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager\u0026tag=1779887620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter@sha256%3A72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus@sha256%3A0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Afe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779917258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-node-label-updater-rhel9@sha256%3A988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9\u0026tag=1779915901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Aee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779915747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy@sha256%3A5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779917148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779916439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel8@sha256%3Aed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8\u0026tag=1778761373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni@sha256%3A954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni\u0026tag=1779916932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779888395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Aca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779915949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder@sha256%3Ad08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder\u0026tag=1779887735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli@sha256%3A29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli\u0026tag=1780060291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console@sha256%3A7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console\u0026tag=1780082271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779917366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer@sha256%3A2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer\u0026tag=1780061375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router@sha256%3A782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router\u0026tag=1780458932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779888565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ae0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779915809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779917579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779917062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests@sha256%3Ab450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests\u0026tag=1780459378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779917257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel8@sha256%3Aea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8\u0026tag=1779888466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Abad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779915499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779915508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779916617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel8@sha256%3A77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8\u0026tag=1780062712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel8@sha256%3A27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8\u0026tag=1780062527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780458124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel8@sha256%3Ad87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8\u0026tag=1779916362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ae94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779916390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel8@sha256%3A690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8\u0026tag=1779924506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779917075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts@sha256%3Ab518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts\u0026tag=1780062738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-operator@sha256%3A2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator\u0026tag=1779916323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel8@sha256%3Af0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8\u0026tag=1779917392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779916949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779917112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Aa53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779915469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779916481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779888352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780060026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ad7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779915706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Afb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779915566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ac2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779916943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779917076"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Aa8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779915498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779917368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Af193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779915806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ade3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779917198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ab75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779917252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779888360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779916339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779916516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779888348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-operator-rhel8@sha256%3A5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8\u0026tag=1779917250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779915517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779916344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8-operator@sha256%3A41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator\u0026tag=1779888442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-platform-operators-manager-rhel9@sha256%3A0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9\u0026tag=1779916395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779887514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779888288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel8@sha256%3A685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8\u0026tag=1779888532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3A6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1779917180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-operator-rhel8@sha256%3Aac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8\u0026tag=1779915491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3Ac29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1779915474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3A7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3A7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ae8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779888365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779888351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ac4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779917033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779915827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ab3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779971974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256%3A7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8\u0026tag=1779915858"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779916420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779915621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ae959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779916428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer@sha256%3Aac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer\u0026tag=1780060797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel8@sha256%3Af5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel8\u0026tag=1779888974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts@sha256%3Afb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts\u0026tag=1779924483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel8@sha256%3A7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel8\u0026tag=1779915502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Adeed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779917287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779917225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel8@sha256%3A577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8\u0026tag=1779888513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Af49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780458131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ac0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779916379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779916898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-operator@sha256%3A7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-operator\u0026tag=1779888570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel8@sha256%3A6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8\u0026tag=1780064660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779917249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel8@sha256%3A124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8\u0026tag=1779887572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel8@sha256%3A7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8\u0026tag=1779887582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather@sha256%3A35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather\u0026tag=1780059839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel8@sha256%3Acf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8\u0026tag=1779916230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Af6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779916888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel8@sha256%3A543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel8\u0026tag=1780459245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779917505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel8@sha256%3Adf70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8\u0026tag=1779916938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel8@sha256%3A66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8\u0026tag=1779917276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel8@sha256%3A290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8\u0026tag=1779916427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ae25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779917584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779916498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779916998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8-operator@sha256%3Ab9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator\u0026tag=1779888460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779915689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779915723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ab6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780062385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3A61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel8@sha256%3Abdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3A4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1779916402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779917334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel8@sha256%3A66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel8\u0026tag=1780458086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779917800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy@sha256%3A5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy\u0026tag=1779887612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ac8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779916871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779916471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Af04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779915736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779917027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel8@sha256%3Adc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8\u0026tag=1779917665"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779916245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Ac7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779916378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779916500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ae851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779917175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779916927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ae7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779917189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779916632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779916289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779915501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779915497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779916291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779915668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779915471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Aeb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779915527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel8-operator@sha256%3Ae535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator\u0026tag=1779915534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Ae13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779915852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8\u0026tag=1779916212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8\u0026tag=1779916179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3Aa395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3Aa395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8\u0026tag=1779916330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Aaad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779888355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780458376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel8@sha256%3A1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8\u0026tag=1779916174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Afbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779887511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager@sha256%3Afceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager\u0026tag=1779887620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter@sha256%3A997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus@sha256%3A2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus\u0026tag=1779887618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779917258"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Affb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779915747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy@sha256%3Ac6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779917148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel8@sha256%3Aa9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8\u0026tag=1778761373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni@sha256%3A81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni\u0026tag=1779916932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779888395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Ab69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779915949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779916439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder@sha256%3Ae60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder\u0026tag=1779887735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli@sha256%3Ab22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli\u0026tag=1780060291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console@sha256%3Aefd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console\u0026tag=1780082271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779917366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer@sha256%3A7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer\u0026tag=1780061375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router@sha256%3Ade1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router\u0026tag=1780458932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779888565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Aa4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779915809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779917579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779917062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests@sha256%3A149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests\u0026tag=1780459378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ab7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779917257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel8@sha256%3A5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8\u0026tag=1779888466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779915499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779915508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel8@sha256%3Aec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8\u0026tag=1780062712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel8@sha256%3A17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8\u0026tag=1780062527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ac12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780458124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel8@sha256%3A666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8\u0026tag=1779916362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779916617"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Aacd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779916390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel8@sha256%3A27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8\u0026tag=1779924506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779917075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts@sha256%3A65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts\u0026tag=1780062738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-operator@sha256%3A8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator\u0026tag=1779916323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel8@sha256%3Addf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8\u0026tag=1779917392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779916949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ac828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779917112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779915469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779916481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779888352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ad120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780060026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ab7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779915706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779915566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779916943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779917076"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Aa1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779915498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779917368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779915806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779917198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779917252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779888360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779916339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779916516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Af4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779888348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-operator-rhel8@sha256%3A77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8\u0026tag=1779917250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ad78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779915517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779916344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8-operator@sha256%3A1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator\u0026tag=1779888442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-platform-operators-manager-rhel9@sha256%3Ae1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9\u0026tag=1779916395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aa2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779887514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779888288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel8@sha256%3Ad701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8\u0026tag=1779888532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel9@sha256%3A8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9\u0026tag=1779917180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-operator-rhel8@sha256%3A61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8\u0026tag=1779915491"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9\u0026tag=1779915474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3Afad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3Afad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8\u0026tag=1779916197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779888365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779888351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ab62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779917033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779916143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779915563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779916257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel8@sha256%3A1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8\u0026tag=1779916744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Af2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779916420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779916428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer@sha256%3A6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer\u0026tag=1780060797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel8@sha256%3A5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel8\u0026tag=1779888974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts@sha256%3A231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts\u0026tag=1779924483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel8@sha256%3A637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel8\u0026tag=1779915502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779917287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779917225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel8@sha256%3A8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8\u0026tag=1779888513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780458131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779916379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Aab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779916507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aa261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779916898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-operator@sha256%3A2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-operator\u0026tag=1779888570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel8@sha256%3A3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8\u0026tag=1780064660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Af6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779917249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel8@sha256%3Aa43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8\u0026tag=1779887572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel8@sha256%3A49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8\u0026tag=1779887582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather@sha256%3A13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather\u0026tag=1780059839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel8@sha256%3Af5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8\u0026tag=1779916230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779916888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel8@sha256%3A19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel8\u0026tag=1780459245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779917505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel8@sha256%3Aadc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8\u0026tag=1779916938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel8@sha256%3A23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8\u0026tag=1779917276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel8@sha256%3Aee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8\u0026tag=1779916427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779917584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779916498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779916998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8-operator@sha256%3Aac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator\u0026tag=1779888460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779915689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ac3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779915723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Af3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780062385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779916611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-operator-rhel8@sha256%3Ada2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8\u0026tag=1779916750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779915548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter-rhel9@sha256%3Ab002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel8@sha256%3Ae0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel9@sha256%3Ab18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel9\u0026tag=1779916402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779917334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel8@sha256%3Aadd43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel8\u0026tag=1780458086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ac94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779917800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy@sha256%3A36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy\u0026tag=1779887612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779916871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779916471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ab99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779915736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ad67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779917027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel8@sha256%3Ad73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8\u0026tag=1779917665"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_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/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_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/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_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/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_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/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_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/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_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/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_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/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_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/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_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/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_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/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_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/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_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/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_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/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_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/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_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/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_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/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_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/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_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/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_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/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_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/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_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/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_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/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_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/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_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/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_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/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_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/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_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/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_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/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_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/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_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/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_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/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_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/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_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-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_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-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_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-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_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-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_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-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_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-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_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-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_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-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_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-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_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-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_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-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_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-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_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-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_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-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_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-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_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-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_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-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_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-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_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-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_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-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_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-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_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-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_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-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_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-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_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-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_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-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_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-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_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-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_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-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_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-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_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-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_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-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_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-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_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-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_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-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_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-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_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-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_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-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_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-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_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-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_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-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_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-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_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-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_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-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_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-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_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-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_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-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_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-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_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-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_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-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_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-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_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-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_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-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_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-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_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-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_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-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_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-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_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-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_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-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_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-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_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-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_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-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_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-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_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-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_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-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_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-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_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-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_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-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_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-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_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-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_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-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_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-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_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-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_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-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_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-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_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-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_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-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_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-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_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-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_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-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_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-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_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-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_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-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_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-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_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-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_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-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_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-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_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-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_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-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_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-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_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-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_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-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_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-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_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-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_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-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_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-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_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-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_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-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_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-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_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-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_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-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_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-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_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-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_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-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_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-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_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-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_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-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_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-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_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-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_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-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_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-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_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-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_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-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_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-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_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-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_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-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_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-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_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-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_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-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_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-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_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-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_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-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_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-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_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-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_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-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_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-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_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-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_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-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_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-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_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-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_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-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_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-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_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-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_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-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_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-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_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-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_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-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_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-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_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-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_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-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_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-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_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-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_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-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_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-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_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-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_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-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_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-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_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-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_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-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_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-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_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-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_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-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_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-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_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-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_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-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_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-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_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-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_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-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_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-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_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-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_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-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_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-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_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-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_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-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_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-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_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-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_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-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_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-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_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-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_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-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_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-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_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-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_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-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_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-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_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-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_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-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_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-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_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-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_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-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_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-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_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-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_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-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_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-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_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-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_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-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_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-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_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-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_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-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_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-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_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-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_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-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_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-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_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-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_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-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_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-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_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-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_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-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_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-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_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-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_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-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_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-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_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-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_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-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_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-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_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-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_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-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_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-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_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-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_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-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_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-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_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-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_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-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_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-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_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-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_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-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_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-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_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-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_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-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_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-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_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-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_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-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_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-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_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-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_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-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_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-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_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-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_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-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_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-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_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-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_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-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_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-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_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-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_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-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_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-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_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-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_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-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_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-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_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-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_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-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_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-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_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-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_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-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_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-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_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-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_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-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_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-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_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-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_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-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_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-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_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-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_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-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_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-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_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-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_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-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_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-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_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-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_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-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_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-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_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-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_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-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_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-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_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-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_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-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_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-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_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-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_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-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_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-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_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-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_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-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_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-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_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-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_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-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_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-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_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-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_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-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_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-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_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-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_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-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_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-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_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-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_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-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_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-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_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-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_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-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_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-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_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-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_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-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_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-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_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-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_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-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_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-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_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-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_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-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_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-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_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-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_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-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_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-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_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-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_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-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_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-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_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-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_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-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_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-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_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-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_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-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_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-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_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-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_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-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_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-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_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-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_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-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_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-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_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-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_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-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_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-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_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-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_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-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_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-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_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-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_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-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_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-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_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-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_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-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_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-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_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-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_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-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_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-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_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-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_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-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_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-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_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-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_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-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_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-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_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-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_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-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_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-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_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-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_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-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_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-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_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-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_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-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_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-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_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-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_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-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_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-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_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-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_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-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_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-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_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-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_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-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_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-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_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-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_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-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_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-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_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-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_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-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_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-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_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-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_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-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_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-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_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-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_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-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_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-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_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-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_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-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_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-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_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-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_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-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_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-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_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-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_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-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_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-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_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-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_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-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_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-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_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-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_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-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_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-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_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-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_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-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_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-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_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-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_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-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_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-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_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-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_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-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_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-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_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-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_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-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_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-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_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-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_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-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_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-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_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-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_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-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_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-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_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-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_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-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_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-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_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-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_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-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_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-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_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-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_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-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_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-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_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-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_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-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_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-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_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-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_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-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_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-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_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-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_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-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_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-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_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-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_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-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_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-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_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-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_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-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_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-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_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-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_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-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_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-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_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-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_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-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_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-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_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-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_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-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_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-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_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-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_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-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_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-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_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-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_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-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_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-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_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-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_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-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_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-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_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-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_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-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_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-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_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-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_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-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_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-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_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-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_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-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_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-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_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-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_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-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_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-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_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-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_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-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_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-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_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-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_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-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_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-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_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-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_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-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_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-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_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-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_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-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_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-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_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-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_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-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_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-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_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-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_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-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_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-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_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-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_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-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_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-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_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-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_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-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_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-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_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-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_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-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_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-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_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-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_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-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_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-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_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-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_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-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_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-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_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-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_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-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_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-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_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-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_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-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_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-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_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-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_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-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_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-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_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-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_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-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_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-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_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-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_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-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_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-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_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-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_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-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_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-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_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-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_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-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_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-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_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-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_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-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_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-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_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-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_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-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_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-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_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-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_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-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_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-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_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-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_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-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_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-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_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-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_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-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_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-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_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-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_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-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_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-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_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-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_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-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_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-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_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-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_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-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_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-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_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-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_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-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_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-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_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-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_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-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_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-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_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-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_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-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_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-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_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-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_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-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_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-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_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-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_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-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_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-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_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-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_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-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_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-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_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-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_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-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_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-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_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-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_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-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_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-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_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-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_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-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_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-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_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-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_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-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_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-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_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-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_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-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_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-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_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-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_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-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_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-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_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-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_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-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_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-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_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-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_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-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_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-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_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-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_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-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_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-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_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-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_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-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_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-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_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-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_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-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_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-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_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-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_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-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_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-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_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-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_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-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_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-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_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-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_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-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_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-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_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-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_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-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_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-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_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-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_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-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_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-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_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-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_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-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_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-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_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-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_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-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_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-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_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-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_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-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_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-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_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-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_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-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_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-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_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-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_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-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_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-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_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-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_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-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_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-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_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-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_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-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_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-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_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-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_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-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_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-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_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-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_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-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_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-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_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-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_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-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_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-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_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-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_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-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_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-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_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-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_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-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_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-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_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-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_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-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_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-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_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-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_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-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_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-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_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-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_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-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_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-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_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-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_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-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_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-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_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-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_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-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_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-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_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-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_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-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_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-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_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-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_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-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_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-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_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-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_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-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_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-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_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-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_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-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_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-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_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-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_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-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_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-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_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-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_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-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_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-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_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-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_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-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_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-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_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-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_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-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_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-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_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-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_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-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_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-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_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-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_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-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_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-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_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-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_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-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_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-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_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-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_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-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_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-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_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-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_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-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_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-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_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-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_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-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_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-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_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-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_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-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_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-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_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-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_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-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_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-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_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-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_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-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_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-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_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-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_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-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_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-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_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-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_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-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_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-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_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-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_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-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_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-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_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-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_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-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_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-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_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-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_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-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_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-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_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-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_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-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_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-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_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-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_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-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_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-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_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-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_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-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_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-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_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-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_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-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_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-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_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-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_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-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_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-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_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-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_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-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_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-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_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-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_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-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_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-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_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-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_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-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_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-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_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-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_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-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_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-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_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-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_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-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_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-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_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-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_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-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_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-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_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-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_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-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_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-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_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-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_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-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_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-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_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-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_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-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_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-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_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-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_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-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_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-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_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-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_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-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_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-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_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-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_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-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_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-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_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-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_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-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_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-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_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-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_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-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_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-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_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-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_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-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_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-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_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-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_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-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_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-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_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-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_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-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_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-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_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-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_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-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_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-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_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-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_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-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_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-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_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-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_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-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_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-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_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-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_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-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_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-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_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-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_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-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_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-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_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-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_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-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_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-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_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-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_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-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_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-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_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-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_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-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_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-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_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-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_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-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_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-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_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-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_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-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_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-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_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-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_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-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_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-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_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-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_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-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_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-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_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-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_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-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_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-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_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-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_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-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_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-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_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-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_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-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_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-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_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-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_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-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_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-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_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-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_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-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_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-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_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-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_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-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_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-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_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-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_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-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_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-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_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-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_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-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_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-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_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-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_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-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_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-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_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-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_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-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_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-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_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-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_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-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_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-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_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-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_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-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_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-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_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-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_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-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_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-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_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-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_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-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_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-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_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-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_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-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_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-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_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-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_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-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_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-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_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-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_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-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_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-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_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-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_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-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_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-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_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-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_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-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_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-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_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-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_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-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_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-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_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-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_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-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_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-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_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-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_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-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_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-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_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-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_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-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_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-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_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-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_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-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_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-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_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-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_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-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_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-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_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-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_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-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_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-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_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-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_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-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_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-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_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-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_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-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_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-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_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-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_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-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_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-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_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-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_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-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_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-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_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-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_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-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_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-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_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-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_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-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_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-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_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-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_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-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_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-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_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-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_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-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_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-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_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-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_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-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_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-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_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-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_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-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_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-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_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-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_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-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_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-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_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-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_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-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_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-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_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-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_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-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_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-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_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-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_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-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_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-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_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-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_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-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_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-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_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-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_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-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_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-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_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-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_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-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_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-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_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-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_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-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_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-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_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-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_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-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_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-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_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-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_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-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_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-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_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-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_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-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_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-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_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-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_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-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_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-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_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-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_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-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_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-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_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-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_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-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_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-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_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-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_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-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_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-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_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-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_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-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_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-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_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-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_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-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_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-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_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-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_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-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_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-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_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-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_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-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_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-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_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-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_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-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_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-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_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-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_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-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_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-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_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-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_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-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_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-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_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-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_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-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_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-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_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-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_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-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_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-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_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-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_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-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_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-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_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-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_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-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_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-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_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-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_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-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_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-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_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-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_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-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_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-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_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-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_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-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_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-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_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-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_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-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_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-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_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-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_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-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_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-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_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-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_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-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_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-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_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-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_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-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_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-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_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-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_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-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_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-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_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-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_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-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_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-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_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-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_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-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_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-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_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-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_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-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_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-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_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-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_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-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_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-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_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-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_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-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_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-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_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-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_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-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_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-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_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-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_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-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_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-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_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-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_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-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_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-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_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-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_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-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_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-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_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-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_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-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_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-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_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-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_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-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_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-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_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-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_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-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_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-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_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-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_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-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_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-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_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-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_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-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_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-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_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-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_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-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_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-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_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-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_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-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_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-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_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-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_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-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_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-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_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-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_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-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_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-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_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-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_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-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_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-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_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-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_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-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_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-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_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-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_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-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_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-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_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-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_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-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_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-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_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-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_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-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_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-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_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-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_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-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_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-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_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-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_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-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_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-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_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-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_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-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_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-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_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-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_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-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_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-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_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-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_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-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_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-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_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-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_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-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_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-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_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-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_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-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_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-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_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-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_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-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_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-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_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-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_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-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_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-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_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-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_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-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_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-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_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-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_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-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_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-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_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-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_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-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_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-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_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-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_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-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_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-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_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-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_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-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_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-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_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-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_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-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_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-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_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-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_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-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_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-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_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-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_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-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_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-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_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-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_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-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_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-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_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-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_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-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_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-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_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-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_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-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_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-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_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-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_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-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_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-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_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-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_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-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_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-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_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-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_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-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_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-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_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-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_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-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_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-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_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-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_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-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_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-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_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-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_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-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_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-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_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-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_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-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_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-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_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-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_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-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_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-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_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-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_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-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_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-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_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-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_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-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_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-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_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-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_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-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_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-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_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-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_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-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_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-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_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-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_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-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_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-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_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-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_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-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_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-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_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-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_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-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_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-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_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-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_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-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_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-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_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-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_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-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_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-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_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-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_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-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_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-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_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-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_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-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_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-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_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-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_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-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_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-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_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-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_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-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_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-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_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-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_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-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_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-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_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-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_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/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_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/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_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/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_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/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_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/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_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/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_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/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_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/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-11T07:31:39+00:00",
"details": "For OpenShift Container Platform 4.15 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\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5bc12d09997fd6b86a5d7ab2a5bf482474cb95b624c22a4d05607e3397302cac\n\n (For s390x architecture)\n The image digest is sha256:10bccfc41bb95736b0d6a1a91e3fb1c968771e3f023019abdb7480ac7de1a107\n\n (For ppc64le architecture)\n The image digest is sha256:9adfb17a263640a6c55c11fdab9ae0ccb7ac73e421fb674318c17d616c4ae4ad\n\n (For aarch64 architecture)\n The image digest is sha256:9f35e9b44efc724d4e44a788808e0192d9710a993a4e0b2f2993a6444201f896\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.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23234"
},
{
"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/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-35172",
"cwe": {
"id": "CWE-524",
"name": "Use of Cache Containing Sensitive Information"
},
"discovery_date": "2026-04-06T20:01:47.396100+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455571"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Distribution, a toolkit used for managing container content. When specific caching and deletion features are enabled, a remote attacker can exploit a vulnerability that allows previously deleted content to become readable again. This occurs because the system does not fully remove all references to the deleted data, leading to unauthorized information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/distribution/distribution: Distribution: Information disclosure via stale references after content deletion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35172"
},
{
"category": "external",
"summary": "RHBZ#2455571",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455571"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35172",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35172"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35172",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35172"
},
{
"category": "external",
"summary": "https://github.com/distribution/distribution/security/advisories/GHSA-f2g3-hh2r-cwgc",
"url": "https://github.com/distribution/distribution/security/advisories/GHSA-f2g3-hh2r-cwgc"
}
],
"release_date": "2026-04-06T19:08:44.512000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-11T07:31:39+00:00",
"details": "For OpenShift Container Platform 4.15 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\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5bc12d09997fd6b86a5d7ab2a5bf482474cb95b624c22a4d05607e3397302cac\n\n (For s390x architecture)\n The image digest is sha256:10bccfc41bb95736b0d6a1a91e3fb1c968771e3f023019abdb7480ac7de1a107\n\n (For ppc64le architecture)\n The image digest is sha256:9adfb17a263640a6c55c11fdab9ae0ccb7ac73e421fb674318c17d616c4ae4ad\n\n (For aarch64 architecture)\n The image digest is sha256:9f35e9b44efc724d4e44a788808e0192d9710a993a4e0b2f2993a6444201f896\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.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23234"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:37d11c57600f597bfa14565b8431f463c4fdd71ca9f97314011be1999cf4cb65_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:92c79379c3e9abe2be3d8f7d10fd60e3c1a284d39af60089356da2c253c19130_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:ddf39f66b60dbd596dc46859e85d94bd401c1b7d333704d679d44791f2bb23e5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:f0d5fb47f3b97b29b58cc06bed59549da4240c121640e182cd6f28a3df7fecfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f8df4611db3e98d0faf71ecd9161290ac37caf3aabffe655a11808e43796f74_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:509cd0524603e1fd2bb51a10f182905b75cc8dde90cff340bacb7d8b983950ae_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:6aa02ae4c8604eff09a09a2640e38532e3535352ea94b303669ea377058f9bf7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:988da51896bbcb8186849e58cba97930578bee523dae3398d43399eceae74d19_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:1d280a964e59826aee370c7a2d26e0b8429cf22fb8513250af4e98f5db80d03c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:843c33cd64bad8771a539a7f9938c98ec147c5bfead95f95b0dc9046dbbad01c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:a179b77b6453c2b1c13d529398fe330999c03fd8b55744e945ec174775af2c67_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:c4398e6b5dc06abe3b27a6ed946f8a7184dd579bfa39bdaeb79d68da97989e18_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:052a4fd280e65ad3edf580e243a23d75deb4d0c6807ead17b9be1d1e936a0dc0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:637759c253e593d03a1f476c367afed8398d5186c565f217d052cbfb8e11a18b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7a239b2338b47450b8d047b200c9889337a7f6ebc0fe86ffa5a66ce2e962b762_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kube-metrics-server-rhel8@sha256:7fdaf710978a097165da38d049baa4486a76047e9da2c4cfe9bf254f44bac06d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:189dd34c954284027ad0519c3a6bc335ba7ba14604e12208b6dcfc8c25b8d320_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:52c3970d34ab29b4607a3667ac4ab1e6f6822b2a70503a7c6ea6bf84bc524e9c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:577d4cd6f9dc7d70c68aa019288210186171aa6a786a5c2319da5252905ebda4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:8e4093f7726f6cb2f8aba94e8d8da628a46ddd2283c454b36a89ce5e782ae812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:19c53b9d9c0903c1ade6911f1695821ddc85ea8dcb84e4713f9bda526917f559_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:543bfb02708ebe2511757e93ff25e704739f97a511143a54d65b5e760c5a2c19_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:924585e1d2cdfa58ea121a48ba646f385a3e9acbb3eac734f0b581673d22f86a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e9e482520887bd06781fdc63fd9b1d54a1842755ca3d33d5e2e792a908787a2e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:73b7154e3d997d3e8c4e20a04ee4e03c31e8b79f1bbede9b743e36b7637b021a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9d975ece99b7d955095445e65cf6c727a31384bf4d0225f67e90ac45ff8eb13f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d78cedcad0974883c2c02fd4e996b1a8d1c4ccd19cf135835d0edabbcd89d23e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d7992dbc82bb2b1b5e0c4f0aa7f6b7e811ea4c2026ca8c3b81859ce55f23a746_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:6072b8760e62e3b46ff26f0ebb9900738a964f99fd19c6a3f8241edb7d27d401_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:a8ff637b55e2df5564a442d1a40b4031e93eb9c0ffd5aa014e411cd0783dc3c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:bdcf6f90d033c01ac4c079050ffdc12cd9e28a1e88fe2417a33a61c211dfc1cb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:e0fe39d60a1dc6d0ac00809c190dad6e334d294b2d39a513d303696e8772494b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:11ffc3c8152b106064dce7fd175e8bf4243312ff18f7f7b621d309160154ad69_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:77907c624f26a071aa0e93580f0308316141da3da174131bb6669feeeff883fe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:e9653c123b246c0782c1fdc2444e809251324823fb6a46dd825d6602bce03dc5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:ec3d0e0672aee3ac8cf34d5b5493c4a3dc5a4c1eeedaad909b1c78f219730a7d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:17059e345c233b883ab61315bc3ea12ace102e5f853b4568468760bdadfb256b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:27e5c91920df550c8ff50930b12b9fd3ac1dc07a9f5428aa82756b43ef79a890_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:f8f6b29e5de07c39f64b87b3095ca10a88f21735ac6fa87c93264e9ef33fd4ab_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fb42591cd8dc810d6c6ea685acf03dd67c504e28cf0d18705e09583844eb5601_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4aa65aa0fcc363afdc15bf471c59ed25c5e9bf44539adf852b15caaaa3ea329b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7da14289745dd0331e3688a5341222bdb7779385588996d8ad41a4c9d868fcdc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ae88586851200842e8c3b2c7fc42c1682ac81a9be328d92cef8b395b88787334_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c12d273e396755f24f232a2bf3968623b6b77279a408b34db0e023c2f10ec3f7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:666496f7d4855ddb961e204b8b44463b32b35d802bab4faa4594b1136876afd0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d87352b6129e2db39015ff563adbdfa8ebf1f5bfda60e61d7b7b29539aecd70a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fb040b2f4613bf27977c166d020e2c76e3df897e79a76c89be7a5892b1406055_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:fcd017963271b520dba0a1538e3cf043ea3b0ee9c730e4ec420026286b89d941_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:45e59f8ba1ca0bfb0ed283b297b0da3f8f1176458247507eb0d28517f8e94fb6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:5d0512b7f3ab00fdc2d2df903b67c3fa7d7718ee46d8870eef5e18878041c742_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:979949d343b9f169c1196cc43c34d2807132c4c9ef949fae533e0ffaefbecdfb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c14368cc791e34ea5d9a06314e5190738e3a3d84dc3c4d932db71ef206420583_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel9@sha256:83ea57b709594c197d71c320dd6dd3709a20b5ea62878eb24384d9b0aa31b4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel9@sha256:32e65b585d92694ac2dccebdbf3c59c3beaa5af11d8f06fa402cc2394898b013_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:5b6d809b79b77f6f0c6e899a1b3096211814ec48743d3e29dc006da9ed559990_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel9@sha256:250f83210361dcadfa24b244490b17f5c2ba8a4e2c0e08cf709c49fbcd2655e5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:77cac0ffd0f842ba016835dd560d2d1efa63dba6d9d0f0e0191a00b2bd2c6c9a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:9f0113e30591f20a32688e017f89d83a6fd266f9be922cbe3ef31c96536d1c8f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:acd9b8a17f528072f5fb1de18dce0057f93c7c134c452aa7dfcb54656352959e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e94d9bae8487e4aee64449ecba0b63b2c5206e4fa86b0e23013df8827ad8d13a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:11c780ff25af1f7b738c580666386e6110f162474e31fd59d69f7c18779e66c4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bd57b4b2861b896b353325dc49fc024f1813cad0660830d33454edd8fcddf169_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b751fa5272bff63befb1cfce015a5b7502fee39bc07dc510b30f2902e65cefe6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:be7957ceb06f84ee860e01d771a6e65e888ffd0ccb82643307c01f986089d807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c39c4c626ac7f4cadd2c253f5371f9a298eea62844b1aa1294b94a5688f23c87_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d72c1c26abe65cf841d9078a22c0a1391cb15f8ef7f7f8633510a28fb605385d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ad1c97cb134a730e4b7f85d23defa4c1b37aced36c1f1476b4df86434b1ba5c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:cb5245dc71f6438ae19e6eb9de46c6847b156ea11f91db1da876044f4f3d976b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:184408df798acacc2c88cafd93e221b3aaf8de767b2db5e177f730121377a5db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:caa3fe19d1fdb6c15ff88df84c626c6d78e24d840137e1889275d8ef3e1fdb92_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0ca5da09b11f70667b983795ea6443e169664168386d8ba5e568d6469623bdf5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:fa33651b54c328f9f60738cffab17d550690a3d3388ee0e06ffd9b5f6144632f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:31f23aa367feb1f64860f132502b9791b5f89cc0059478efe66630d267760ba0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:d5d1d70ee0fdfac2a74c433b795a915405ef09178a628897d8c892cee31fce58_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:af6e9f04c8ddd62d2376e32a646d2b7b3d94fe55edaed93bfbfdffcdcc9f96ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ca2028f8fd0a09df1ed01ca967fa045c9eeeef2b0f8235816a5386905cea2e09_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:86b912334f98e69f5779469c61e7a69418c30745126555463b4fa43bf7b36f2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f8bccfff72a6b9771ed2a7bcd4db414f0bb30ca615556f5389e2ccf4a2ded640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:c9b2dc86ad50699713d5959294478e0ca4864ef088aaebeab1b7bab91c0c38d6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cff18663a6bcb5208c0dcd9821b83781d80ec3670112d330f31fdcc4e7394858_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:48693f93839932dd215ee8ce0fd7b707a936e7722807dedd539f5088e8af1d75_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7d31d7146b861ba685445d6a2a500baa115f4828c9f505034ee56ece6c48716d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:081859c3ec68813d858296e8a0bccbd8eb9624faa51ea59681e0dabe4e8af6e0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:c0e3e7a040fa360a975021ef9d7e08e01feef84ac41ea3d2cc4c408e61f892d1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:8b248f4f5d9f3bcf308f1330a8a045cb00764b697d72d77af0f692a521c19442_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:e8be35d6f72a6991f01f5824617330c656ff878cf8556f52209ff6e7f19a2802_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:27334436f1dfde852d795fcea333f69778a4e44be7b5df9d721f00e6bd684bdf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:690bbf163d5ea0accefe9dcffc55e039348dd2bc064a9fd7677b70c3cf916d48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:e69b24f7a487e745db853c262bbaeef67b48739602cf292b376151982048f9c6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:eb01e8e2bf6b56190c5c4d7b2bff10624a5a62a46ef2bab6151ab051b5d01879_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1cdf7adce83a6baaa28dd09d80c8871273c0f6b5c1f11a05c55681ece9c145b4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:56d0d2fcd2afbc75498e2c3b0975686dfd9441a64635a40562ffd2a860e016f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c7f4735a4983f3001cbc08b8467de06db7800e28b3bf4534b2016042b098efd1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ca7797c1dd25ba71cd625b6851226fcceef820bb80d4b502d987e06e8b78ed36_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:156c9d1c5f1a6465862ca9d03ae24af70faacb77bc197154f76b0b03ead65bd6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3d98fb1b3dc10a6b72e481b8c066d583c4cc2b11c135a630458ac099f71a9c76_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4658180b5e71faceea56d1935c9aff0d1fbad71ff6d807ec8a9e30f9a7ff6839_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:c2648e4655b5d02c4b652696f95401ad5fe3cf3a85fefbcee4d96e917ee44ebc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1b8a5114b53e1cac2ce0c6b00d9521d53162742653bf9335593f1fae86c051fe_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:456972f8d1ddca19486b51bfdb1fc8efb33965a844a94cc5b5b50b60fed74e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:466d5cb704e96497b94ee2478ac9efe62274b801b9c91ca8cae36437dae00292_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b7e3ac20f268eb77f96856a17ec18e1d0b36ff368bf76a04bd1f415012c20f99_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:2658e19a04e8f9acde60ab0beeda7c0780fc0d43a1377946bb938ff17135ae23_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:3142889169734cc30401c5ca91c61ae2babd2cdccd13da3bc27a94dc23f321fb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:65270777559d11510d1209cc90c587178a7baf89d13abe2973e94f001a60cff6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:b518b774dd1f2d68aa2a122d2e723253a3c049497cc3b7de3f5b484761a3a9c4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:00970bd2dcf113b4268995afd900ae6d3d2a6218e3faf9f7c91ffa07064a2b3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:29b24aaf3d5f0c0d25a739101d3bb284b474f3452fd1a7c2fa30e31a7e635bc5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:b22eadf3d0b2be53fafea0c0227f5f70b8af3b2f08a515fdbb11b9643706f8b3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cli@sha256:c5936b752cc71e2a0e0fc128c7f7f3d1eb2c7f674cd23a0fabee1a07dab8bf1d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:2e71f6a4d385157e7002393ec654e11784047140d7324c07493e72c3d37487b3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:3d737deb1668443ad35966a48b89c29505fb4d1f7a7d7ae5e065787cd850dcd7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4258f8b2dd7aa8299cc040034e811aa1ca3c25c5ef64fe406278e270bdc91e76_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:8c148463562b4ef01cf9e067ee70d2b0f0f1db77ef41dbf74bfa89e2b0028f61_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1505a0f62ce02da944885ac5b007a9aa301c12636ec421a15aecc4ffda21d0c2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1a686a0e4e6c9323ff133ecd866a7ab18b7e36ff5072153d93a8e044f2a99a46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e2f93df19cf1d2f25020721b49b4f2e739eddcdefa9fa4c2dbc1c8848a48fde0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f63dd0ac521a6448929301eacc7c1ba104756f1ae6fb4cbf85828f5ef395a4b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:42c4a1c55c3fa10163f46a54a759d6f1cef13a79b71029b3ec1a39e333b778a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4956897563855904dc1659be00a76d45dd72ef6028c7e7eb57d040f29a5c7951_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:97bc89babbb06c8318539b7659a789537254768490bbeb298abb4990d1fdeac4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c828a6b6b61a5912192e59e03ffb3c5c70498fed2e193e18af0cca3659c1e929_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:37c2c0f7501968edc6628e89dbf2ebb78fd5f86efdf542b928ab88c5c8188eaa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8bf6264b710bbc51ab8f5cab73df3f26fb6d6f1f05712106964cb2aa7ed2ec40_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a53f83fe5e76211b798e95aff63a8960a50dbf6d279481e0e7bbb370b5fdc4e6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e86ab7713b82587c8619691bcf7ab9e34c8aa5793a883a2af4e6da2c4c9515e8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:137eb5bfc4119c2969214ea8858e6b7887bdd28554e542f5d0c06807d121a4af_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4521a0a422f191e6519aa3d50d0bd900fb704b7ba10e8761d347a992b6e95767_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:81bb2d516f1ddafed102d98cd0b33f4c9a89998d2f5b788b6ac33aa040eaa1e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:992e2083e1b1f6c54f052445bbe74ced9b18c60fce4ac147f2f098066ebc8e35_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:01496b653f5af3a2db72ea3d93d0fa872760751024d5f9f386f1010c84347cd0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1bfdc12a7ae4b0ef97341a87ddc199208bdc6430ae03081c3fdf4a151711c846_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39865b3b276a4ddcb8dee0ec94da665be2ec79444a51c59a5bcb91c1553eb28a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b547047022ddf2057173732f5fdfae08fb36e16fffac183c8e6f5309c0ad2e2f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:053254ab096eda43c21e06977f28696dfb756a7705d4a31006fe1bc32598bda4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0e084783939dd9f0aaad849f2a277a0dde289f6589a8af2da1bf234db9de8f18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:6ebffba06db6b97593bbc6b16002d44d4caece060e1bd8fbbee148e003d2ebb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5eddb16eff5f5aa1af6ab30d53adaac6a7aac97d28ec15e2c34f4fa48ebf42a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5b0c2203cc2f46f5d20b9c59ed0528178235f665a6ddd9d0402fafe6864a9634_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d120bd02697cded7d7df454e13a59148803dc80dc198c943136bad0e1d776c53_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d88fff91783700e1ccc3c29a381bdb72d645479a9a5a7c79f1ec848622507862_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f881cd6ed30c3f05a876f09fd257f872f43f07ded3fd8da0b89e454effcc48ff_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:aa1df6edf6d7d8f7d36dada8c44196d96a6694a29f265e30161cd25489174307_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b7070fe5efafa27aa4c23a2874435b4a42af18f52862cf191ccf9c592f060b97_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c3b26cba0ca906c6f5296e54875da3601f567485c48f6f0aebfce16a03b273b9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7bbca5bd6a4a3b41415a461b6a2a8526ae3a578881d995941590f5ad62e1e72_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:82f09faa17dadcc28acd56f86d338bddab74008d90afa5901a6a891568a04b90_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:8dacd0788425d68b01edde493abb46c4494dfb78ee59f10b70ecf49003f4844b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da9ec8687da66aa4956a443dfb1144b7f620f507d775eac6b290ac5b477244d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fb37d8b1cef72ae9db056b9e8ffaab3ebf28d77bc2209053485e2149e24d459d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2841128079c1c325e235735258bdae643c21a6fe54bd4ca6c6f7321b1b728f19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d401715541b8508da0cd24c373eb4d2b4f70b6b5c105b8af23df9ce8f950594_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:b0a6b3cbb6f1e9e1949303966e0212331bf9282360517cfa7be86bb5ef3ae426_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c2bc21eed59fe200947491c73c9357d3b9b1aaf89d8892d9782c2080c6282b09_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2af3ec620332891565e2a8ee99cc8d7b0f2d3f6a4756c754fd7b22c62295b660_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:7f96133e8cad80337ccc551bdd4c659d8e99e79a0f03fa85a19e1ba775c7329a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:95eba4f7508219074003ec28608f33fc0bbe9fb4650d4ed6072a54844c860cdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b959f1404a3ba58a5e015cf32a36f84c4b354d480150634ee28e12be137ec498_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:624286a562f9e2461de150fbe9a0183f4a977d5b30183be5cd4831b32bc88311_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:67942e19617d07675a44b1fc13261c193a80f35582ca3484092dcfab7b8cbd64_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:833372c7e9d6aaa42a6622c3259d3b349cb428b1913b6bccfb247efdd8c8dd06_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:988e8d23247c483429c0a7a5a5638dee36b6757cce08d4dcd829f463c11f34c7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3bba369f0fdf1b4de34087fe04a4ed72a99bd9a007336503d54675c04ac09f9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a1ec6e63e5c20f9382177a31ee51156c935d108770ed39d895bc096dc04fdc0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:a8c4d780cf5a4218f8efbeffc222a40ed15f78ad73687e8c8135bf9f3c56754b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:d5288bfad14fabd20b737f2c715c3324320885a76fa1c4eac4220b37b5bb9e03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:28adf0f1b3096811b3f6c261879b4a501138c1e4f76b3d1a6e82a88bf2893ae2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d70e1f6f0a816f7fbadeac4c06b5c8ed429493b6a1ebf64db4b6b3a400219101_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e851e1f44e205be25c4badc016177eefea8b38d730f135d2976f688b86618de2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fca4054f44046f3fe3175caf9e6b5095d48c7eca0241e1b334485dfc77524b69_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1ea481fd1369c117c0805b0d12e6c0fc48d2b12d02f4a50b26d153cb03659929_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2a0020ab6ffef82854d3a31efd51f78e45751d67de84b951c293fa5095d60f6a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2ea1ce15f93c136b3108902e43fc192e9da213c980a7bfefe7d9ee4e2d2549a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:e15e4e12b4e42fd0bc8fcf56a93b3c5f32cb44dd3dbda0acc23fd16a68b9656a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:492e798d2175264922f3834319325ff0bd4131af0ec21136f2fb4d9e4377eb83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7a1275ee58c3497367c047c33a445bf0a69c389e0852b5a89eede192dd91dd1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b28ede279f2a1ca180d320b82af081118b93a7a9361acb49b8b0915a4773a3f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f193434c5b13aaa4f14ca8f4097b58de2fd6168420241550b5866d81021fc0bb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:736fafe4dcbd457a162d336951f74cbb72242f778b48ca8e66b057468a9fc265_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:857ded018c6dd508d1b4a84e70a14a2f9db91870c63546f49fd5a5be5a248e10_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:de3fa6298fa80459d5a658b36d51062cf969dfe16984f951ea92f6575c0707f0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e6d9ffbda2dd155984f6d2d1056ab33a4171b7ce342dced41ad36ba55ca7eea2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1abd9a5f3a37044358fa53fc5768da35db07dda7d9dc7e86a3913c2b43a3abd5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:52fa1e877d79062c58eb02b9d86e9645ff501b0071d31970293e739a90ddd511_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:577c8431a937b0633c7e154434144cd11c0578f03d92191b2b7c16109062f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b75e2765e743eae613187cc455f341c4d4e2d54493f0775d320fa94d5ededc75_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:180bf8b3c5341e89fd415debdc9e65a1d7688e95e1193dfb2b7e69ea22d391f9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:30f02eaff026b918c2fc60e1fc675a065a1afd38b44f0afe8e8a5d097ff0df55_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6f6b538e14f38164adaa0ea51dfc9df7de5b815df1ebc7424d7a0f8c8361963b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cfc4e9afabbf6350cab49da555f29a021c16b7d9ff6354ae82025a66f813383e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:1e543069c1182a891e5d080bec3aa641e597aa5d6612967d76e783062daa9f00_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3df5c81ca4cb9083d96a433e2e9f5b5e8aad6021db2926e8351be52ba93413ed_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:96d8c70700e27335cde852e3e0619238c4d8ddbe547a579c133901cad543faf8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a5c04ca4fe5b341fa0c432b5d8ffe3e6ed4591d71d406974d0ebcefe1c92cfe5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3137b788298b74a9d3df93cf6e9d62a7f5d79e4493dfa8602bd3a4170961f7e8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bbb2ceeec729565cd65405689ce9c6049de5a6619899723dc5d476424612758_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ae238e86bc297b800b49ca831343d8543b51804f3b63eeeb838a0a8d5664b310_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d320ac7891dd51f39dc7b3817c66cf9941e126a138e27d8850bb8a88b336b37a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:45424c20d4a0fc73b77d3459f92212689041116ff3414191debb1ed91a41ad2f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:779b047f5d8ec92dea564a6de1d8ce60a26e8e7a3ec976dc47a2d1f2517cb9e2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b87a4921b049fbf8d2832846d1b15ceb8a458b7b5c9ed0656a6d17b4cf6e0ba8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f4ccda8cd0b5f0cf35f77babf53467156661a910eab061ca7b18492833f3981d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2f99aa52843ed748a8639be2cacb77036089d16ef4505f22c3bf1a0ccc70e8da_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8adedb6b566d763ac88648d88d633d7890210460a64cf07900be78b58796d8c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:917035deacc20779aba99e6fc816d6e620a119ccb4ec7c141e58ee8c392a4cac_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e3ea04159b75a785571b5a7c270f9da9791406c50c75db6009436c8dc32a9352_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:600e0219a6d5b65c1b8c987b5c518f5adbd66f8fea53bda3a5ad123fc4adf33d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:916cf370ea414a31a1d49226c641e87fa9bdf46ad85bf4ab64c8cfd696347111_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:da4e3743d07b9b78953e5a36edfcf611cd5a3f4cce54f4e1d74c88cc5bc3156b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7c3f33667e673739ad0df57adf55577163e2e608c59bff591806f38cdcd5b04_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:12457f1c6a9f5435e68b2de9171ab83ac81f9c24d4f3f41a355daff97985fefa_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2d3af3d60aed2db50fbb3a3dc15e6591630c6895ea2fca725432413d55e144ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6dc6be65fd73bc3c86cac7e1c582955466a910e13ca9c70896763a8e20f5bfdb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7463702b5148175a167cbc2cbc4828be0c7855a8a0efc376d52af464f18750e1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:5312a85de44c74315a88be5a4fe0dc37c1420eec36d9572987bfd46aaa9b4ed1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:77188d7ffb6ad56b03981f33f13cec617e78212a455dabe41322385d61ddd042_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:ed9af000b33d7bd02432ea6e1964cbdb7a988791990f6b9f7a8cd9663b77b94b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8@sha256:f0a1a80f8da9598cb51c6accb3b26eb9fe9d189fe94044b470b0f6111973310d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:367105c1673a4fdb6c9f57b76b895121abb8ea88019b9972e6d45105369afc23_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6813b2ce99c28baccd860c250f02bad3a47983cae7d5110451a6cca2a2105c59_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d78461a976d44b48fe7d2d1daa5b9b165dfb43a420f17fba87d4589bc6aa333c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eeb775c5fa791182415e44351837c0bd679e4af61f89dd1bbef4dc64a4c0bb5a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:036ed785575b7ea37ebf4322941accaf5080a4f878bb87c2c97dd7b1f514355a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1bae9d5cb0fb0ced9cd937a1be1b20bcc0122ce7046ede40687e00b4eb6bdeda_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:48cb9927a279a0f3e5b211b256af9c32b2e807b954b24bf3a1d76af88ac2d446_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9a66cf5c3f9a7ef96f0b555f2a73006db70be214f7a2cdfb226ecbf2dabaf176_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:0c100725cbffb6a7a15570a600a60be856d41ebcf0f12c4371f264e4c4e83203_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:6629393a40e17742c03729aa502cd16f3da5cebe5e3e7d7f5dd5f9b1fefe8858_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:a16bf8f681984defed18e60566d59e308cf0d556915c3a461c8887a0f0169726_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel9@sha256:e1b2d0456b9578afd0791a8e89622d6fda3fcdb11f837dacda96a7c85e8ea23c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:09a77a1833bdb28098c7423849c95ce864bc68993848651b4535126e54be59e6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c121f64aec5d9f1202eefc0c0a761692a6b8b37e7765cbcf38319732ff67d2c8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e04ddeeb6705ff32f9b0dd223de51af2b07e1e0e73a1f9ea4d052d93443c7a8e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:ed39c2daf5dce1aab6753df69c9305b8ab7ac0fc6b309a8819aa10eb2750afa5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:094fee3fe6bf28d20466bc0996f587ba882d32007503d4bb2e50bf7e0c49cea7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:67e92e82b0962b1469f497be1ab8799e97ea6fa46a5ff2abc165919758395162_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a2dcb6b9186ac80a2a407a8e1d5f55ec6d8a4dd17e249c7be29f120451fb0665_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ac3ea96ba5a14186564f4891fb21d7eedfa81f4950fb735a5cfd41448e85b0b8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:783ce4f3611cb0692b02b725202654469a892d994075f96b11a835c38c40bbff_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7fb58aaadd191aed1fb965bfaf5ee5b5f78a129dc518f60eb6499c485dc4aa18_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:d8c287f01d459e55ef39a913870db40e2c9ed4981269db1363865004cf44244c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fb81f4c3db5167a0139471d6a7cf563ca599f7ef7303155fb8ceacb707e0df17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2e5e5c2b7dfa8dcdccdf558ad2cbd256c0d6c2e33b088742accad882f97c5a16_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:526d4d968c46d0a14d6c2659845405e396d32922ffb55114c6ae5106d4e94fa6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a133b7d17030050c347def979d40ebcff2221f81ff13e430ce0ed1abf7c2591c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b510f20bab9906083c38cb512af491ae27cfc3a6c7cad3ff9ef146ac325812a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:18902c3a2f7e829ded42dfe3a263d7694cc03f8e07a82668cc6120664a2a9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:2b779f7f1fd7d0758b9218e4235b53357a93497484b4b50733acacb2447d5955_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a5ce3869b06451a8f0ee05db0ab1e2aefc1acf9dd89ee5c2afdb40f80ae4657a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:cccfec956ba343cdc872378892429f3b43e1751326447141438136d2ca064a4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3754dc56947bec03b14effb4a22e4d40ff8bc5fa9ee7bce18b56dfcdf7926f60_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:774e78ea9ca1188c283234437b3d628bb023a6164f7256d26716ffdcb3a880cd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c5220b69440fa490e4be1e96dd730cd5875c18d325b1a61dc62138748385850c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:fc6df645da13121b5d739bda67c4262c69f884e1adc6b06f56fdcb5d2b102f6b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:096e5f25f3f3b50a07c5ba8d773c004e4002f60dce78d3ad1306dee4d831e3da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:57a5ac429cd327f51a1dc24326a4a554368e324a181ea10055f114a8d2983653_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7395b6ea51fca2107db9b71748a30e4399972a539338650adbbd2a125031e572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9758703ac51109ea18b59be2188c00b05e1f655ddda116e73e0474f1d8b163c0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:3737a713865a0c07fbe359dfdbbc48e41d630a556f02e505fcd9cb583fbe6c19_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:7ffad95466abe52747700702b03596bab6870815d245a634a9f0db32b91970b7_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:d0e89d104e819e56e6ab6a35856e0eaf520b99a1a6bbfe6fc30eaca98a1ee4fc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-console@sha256:efd85bc8671e135caf5a378cf55fda5c61b520e9bdd44bded985e5874411112f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:2b8330108c9ca336ff641a9b44ab2984f829cfb84eeac3031aee7b7df43c9df5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:685c3e7c53479037daf053a9f2533176ab43c42c1a76485c4152f449f53d0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:c9021c43c8064ee8903de103be1bc6163272c59cbfdef6abbfba1809ce79b505_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:d701fbfd9d13fd6208320d6c64fad16edb25418ceb345cb63f6193f78470de40_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2341e4552f71ce15d4c15030ca8664880e00de1303629d68ac2796207c1303fc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:63f7f102b9bed4301d97da4b7280824baea24196ac283d900f5cf3c8c945ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d03de612e617eccacc38917749c7c65d98513a574af22c50aa02cef6453db2e2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:d3a4aa41b20324c04b220936105e2c0c60f765829e8a252bec732d7d2fcf02b2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:6cf1a598e0921e6abab1b89a3617adc2929c9a413d06a91dac553c70d144627c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:e535cd5e0e818dff23db7a264cf9c61952c837938b8195d2f6522a0dcf404579_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d558460c726c2f033005a1d7a0c5d33816d3aedfc4fd2b3c4bbdb44e65d4cd8e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:eb0e91d342bb3d12500a964aa66932ddb9c61d843ded69b27a0873ae01d9e569_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a6110be4dccce4f9bd7a677edb72ff3ee3ece4388ba32a32864c9898fa18fccd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:e13daa6bb1935662607e3a0ecc88ca8663d7504c54e459d3ce4e2ef234b77a29_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:61f1773e0a147cd53d744ee04842a23076051acc3f227ea35030f5deaaef3e94_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:7bb4373fd9d172d454d00fa0fa6a8105bcabe7fb2a06e9eaa4da5bac7ba82730_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ac770c96304d5106d156fe4f851ffcb1501fd37183cba94888c6e00b98745eeb_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:bb283d5b3686acacba03cc7fc36ecd64db7df855802ad09d24041e5e5ffb0710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:604597723211040fae14888223bfde35f69dc05e17cbd9b0bbb8e832dcc5b5d3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6faa13f23980b4479d5503c488622dee0102ca39cabfe591aff33af04cb990d0_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:8787126fd07edf95ef7edf0cfafd723e83d3add14faa5882580142e37da9c76b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:f7f86cdcc00bd5c04c7de860dd08d4914d8b327a3d1ea76d66a955bb1e6f7979_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:080776dbafaeeca2648b65bdb5d63367a1aa7022c05c2341eb979aacfbeba435_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:7bdebe393f48daa302c560d0e8f99a5cc9c2a1e580bbe7bb4a365796067ddc0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:c29381677944378ed317b139557eb43c0f217e8f019e35cee851e2332db06972_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:dbdcad35ec0440906bb432708ca4c6464695b91df1f619d0625b0df069b4dd2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:4f4829cd95eda5a9aa775c69ef146b08509391e83f605ee90b813dd434317b63_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:588b5555d2498349c66291d5ec7dcd34129fd109bd667bdaf7fb62d0abf675eb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6d4cfb5941d089827298a78c65c3a6a26f25866b1162580f7d9dfb970ea25fc0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9ed898564382552a535902abf50a29a17b0764ecab0fa5385deb0f0902bfeaa5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3143f8735f46bd43809285849e9d7adcd751774773f61b4f8c4242126b152af0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:8daeb1a85a3635f9ba5ab55c04b5a5c98233f868c7845e8dbd33e9c0d091680a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a395d56fed87a88b3669eea69c4d75f2d99b62a0bc7bb214815ea1dac6e515de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:a7065a54a7e65482c131f47513c26a669469e3d3eb6d69dc7ec010c9fd83feb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7a29988020bb2ccd3e82cf3151b0ce6d964c4fdb9dd275833993db9580ff1ac2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:7f7208178ba7332ebd4fd108ba57dee4b3b68b33df34186564b6c7f95e9f6026_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:84bd2e5547f98083776faaad5ba7ca2b44fa359bd55056a50d1967ec3877f673_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:fad6b798fea415ab577c9f730f8b8a43a633242b17846cd7f4bf7d174a68eef8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:48e1a8de57359de087a7d6f9cf7cd9821a49192cf853cdc2a848ee5323882f6d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c43ee35da85f31d70c228e5e335827a83adebc16f0725c75020f60893844ea16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d22f1ed2064f50be501c3a3756eeae30912db6bd07909e6f6eb845e04f6f1dd9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e8b063444463e64aa35393830dda22bbb7d3f3b2ed2b3322084e5b42ce672394_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:148ee055f669e4e5a8c028868a17c7111f35faef1a94d52ca205ef5df0903df2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:1ddbac5fb44039fed5c8e0059e304e8eedfed5b763b6c78b8f8e22d5e86f9420_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:607a9d7c8e0e803e6a77555c7168ea99af4082463812c9bb73b0efc1122bbe94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:d18c6b8ea015148492ccaf89e590a8346e3852df12f4da672226407287d42d03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:1274b25468e3a4dea3cb0df7a09e64b90f213193212441b0e611c4277c1ca578_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6d7dcb5e8f7927e4d15d0b2a50328f4b4f2d03685f953707bcf52f2d41249602_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:6f399948c7c03ccdef1b97aae7687287eb569d5a1978de1759b40c33a443f574_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:ff94611df8aabd348a73ec1fb33d066f4cd5965f59d746cb3288680d9bd49afc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4a89c02e7ecb0e1cb868ebcd3376049e48de454956e4c41f364e77754ac1f0d6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:591154144657ac3e957d331495bd5e40942b46cddcd36a41e19b4d2dbb84395f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7940fce5405859ef80d0fd0794f47c152d0d64bdf4d45f6f34740dd42d34a2a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:cd5ec7d102407a3e1c70bae975b1e0546906880270e67e7e630ab1d116196640_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:51272aa6a2d5a92107c84125342fd7b4bb7b0afb2c8f33316b1012151fced75b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:aad012fbd03461662996ff6c3194eb75018e4376996f8b87bfff099137713d03_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c2f3dff1fa0297608cd893c322b40063e3f7d0f641e307cae7b5dfad25dd2087_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:f5d3318450f668427d94d54825fc51a1813d439f08c8d60d2a8f743b26fc266b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:2ba048a29f3b8bdfa30bc79e499d7249f7acd50712dac77364b9324920af418c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:4c4ff3c457dd1f4b3bb232436cc4f77d2e778a7a7d87d18f74b91b0e7f6e94a0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:7c3cd850ff76f20c91d5577704e311f146e33fca897c826fa1071a3d6f259383_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-deployer@sha256:ff9d4312dfa132323716b459948a0d5a069c4c387e499f7503b9373736958747_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:aec6461ec8f9a22c1306e694a0391804c30234d75ee7c58d78b34e2f2c75a960_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:c35dcd04b32635d063de4735abc94e429eb3a42497a7692bc52bec1954e08043_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:d08413df27f3012decb06eba668a4cb7b866f59fdefeb11361f54b269b17eeb1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-builder@sha256:e60e4d9c6bbc144ace9a76408bcd33c6d1cdb918947b742d215565dac0001ed8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:088f06c2590f8252f99028f93c21ea5c2f2642a2cb9144fce16d393b513b04b5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0a785def6a563ce8689ee6f39e1d906c70a1c49c512cb67ee5552e1170349acf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2c0093bbe97aa22edea5dbaf332f43b91acb466bca8fd8b2e35891caff2990b5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:700efb1d263db1db0e6cd2ea00190f458b20eceb292ddeeefb88743f79d00aba_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b4a5b686357a15edb534fd40fbe4f4067311680ddf8923805091250a162a2ba4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b62bfd1df4b677b7d0bfaf7ee0654bc529f1205d6a8ff07507d070cb0a818183_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c4dee803edf88ddde9c6adda32eda829c43d3d4e9b20e91d529d4feb60124d5a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ec33cdff730727c0a998c9690cd39ea01dc14ded6df0e5607550e0d7ebd70289_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:66bd6c58e0f2e22598d9635b78f3606f02ce6d9ae8259340fb52d9ba7e8f5b4c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e81a80d6cc46bd7162062696869f445c41f82c4528d9d350af48b5efe7a0871_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f67b02b1f0bbb1ce6b4796131cbc261cb77753069ceb229e116a083ecda7c017_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:66a776e1d67e0420f7d31e690b38083329032c070850758cd771e00e56d4d29e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:71efee1f6d4d49319195e5b21a93caaac00eb425cd1ad3fc605cff61e0bea039_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d586233494f3d2a9bbcdd53ea721586e96c7174a1237942b7c899a7c03d16446_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:0e6983801b9ea08495e8736e1e57d22d894f0c2ae9c1a586419192eab30bc02b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:1500e6842b496bb06b03315a508c0e8bf6493e85c14a001ef8749de9e4356838_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:f1518f05eba3a78d76e4a0a3c7a17ecc0a66b1a720db71b9d22125be0346293e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2d6c41272afe12d36912c3d9b78bca291100ad4088acb4c8fc1763354b24eb97_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:53ac9ecdd13377e31f782ec0b78db771676c3ff67df19c85694cade8ae397342_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d3ea1e67969d3b2253be393cf2fc5fa40399575d54ee270baeb148d3629ed79d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:3b1c7704e981dc0738d3401944e5c4bc46e219cd7c1dd77d039d312a3e646086_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:68ea5760f0b366ada8b29ab0fb3192ffa5b5d45b978707e30c5b6b85e5a11f25_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:782d1b77b79bc30dc5f029651404240c62873d0ca1a8272ef496bc5809a6dd47_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-haproxy-router@sha256:de1d3f5aeee7c6c9095936b5091c14d670399f8ffc00aaa64176d04abe201980_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:776faeaa360aea3c34f58bea32e49429c3c943991cd50034333d11475bcee376_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9a32764cf1c5660cd8f0a3a21a0e10590fc576eed83dbce9487d7b80ccfa5c20_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a90066ee6f37582416d606190777d8b868fb8b04b6daabf017b1e98583d35bac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef0640409c30c5603453e48e8e537a6a9c52ed8045bf63709bd98adbd59985cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0461e35e84de337138a72d4ec4aa5c5fe4716da0341308dc3b95615518c5d028_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1141885cd141db9078296bf2aa3f9c7e1748c4b71e8212ba464e3570515a759f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe2a7b83e6aa0bd611655d27aba0a99853ad0c15585c6826f44f335a4ccff1ca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fe3e46632f150499a9866df8830dfccb029c395f4aa770169dc1fc1e7bd96c51_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:431b540c1fd65a8798526c560d657ffd72eae71d350041944872bec6665d8580_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bf1c5f39c2291dab68b622e6770020b9818eef16e310f2eba6f8dce20dc893d8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:651d9dc0e9d52e098a24bd8cf683dd6a045b6b71eb1534719ab9ad95b3d07299_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7db72c4461a8f6d9d80fe0d423332c75315e92406c07e3efd32266f26c5f5086_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b3aab94392b312839cec83f1633b4d3ee7f8f7789aa1e875845c4cfb47b5ab11_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b9611816f81ef1704ce22710bc616bda25f63e7f5764254f7c2f6524f1bcc127_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:90c4a4a559fd93423a6192c6dd271783086108ae04f8ddc1a0ae6bd5faa49483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel9@sha256:988df80734ee6bd4435f378241b4beed98dd62a14d7e257a54f1fff80d7853e5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:56a5a02c60727a511bece560b2f22b7a86c5aae99335d2703c381ab30023129e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f2095bb7b05d5568e0a7de12e271b9fa7f7040ac13209ed436d512faf749136a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f8b46e35efb6e5fe15030beb1c360b17aa3941cea5ecedc6624255e395b88094_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:38b45bdbb26a85e1ff0242ceae239404852a6404455d906cdb82ea4dea8fca1b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63c39845101efcdb2960e4fcd7734c89a7545faf0200de4bb81290b60f4046b0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:907cb18501f63c061626533edcfdb29f00fbcbc18f018865efb0f6db9ecdbcd4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:cff25c80b57dc16662380af07ee907169b1772313b4081c31b28b14dc22f7616_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:561c0fdd85330b292a0c2d16dda8bf2a702e6657b0558958d75d7f7dffdd1408_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:c0376482a8e183618335d6d7427d208dd50f9759d6351387c78ab0a66a751fd2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e84eb0d9c62060e467466ad8547e440559867edea4c5229e936db8056f7d1e15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e959b6a9c88b3c6b238050b8c7af90c936fd2619ba28e42eaa1956ab9f7481d4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5a57fb33f51908882f451e7e2d070fade811613806a2dd119c2980b88255b01a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:5e489f875b8834ad168f58bf21c0813b01e857d6e95c80bc384908d3788b81ee_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:d9b2b62ff519362e84bd433d36e217768b9caeb700ab702aa601c8ec9aba304e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-altinfra-rhel8@sha256:f5326e425a1a0d9877d178f72854bfdaa31398884b69893350f68d5cdb2e2559_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:231786b7bacac96a1cd0ece1f3b317da76fc74d6c0b7f8e3837774a746ab2a65_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:87247859ae09956684c458525bf07397da1750a15f8923f8099bf2a3d53ff231_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:aacda099f75184ec1a8ca890f49d0361f19417c088c4b33846298d406fd93fec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:fb7456eee21c0c56c4edc5fbce547435a71dd9888b45f800865a7e20d855e19b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:407ddee0da353760e7c7e776e1637494a3c0585eb24583bad7c1978a7b7d378f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:6588dfd74a53f63e402fb1a8db408ef8888cd47c1dfc4e92fd0aa2fa24315dbf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:ac5d2dd1a38cd6e9f793f6b5bd6a4600e373dabe86c008bad0d65db173aa565b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-installer@sha256:d00b49d7e3f69e1499cfc3577e372e64c9f42f36e498f24fb2d5087cd266f9f2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:4dbf21001d68034b28a0b8ae45b4acf1bcf34df8ce130436481e8f416e4a0a7c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b1ae262385c267d87aae725d89b952a65e5ab18f7c899e8599c5ec6e42ad912b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7c730951c7b3d3f695e2bfca165face69c25be121c8798a7a854d3aedf7060df_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:855717bb741ee76a67a163a0140440599a00fc13b9ef6c380c42b3d69c54209b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8415411157b5acdaad43410b65d601d9245b20f57665914c08c27fde91719abc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8bec2cde9dfc4229d8067e5ebeed3db73ef9b79498429819db3ca3630dbfbaf9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:6330eacc8ebf172ec236056a061541e7373b456fa118e05a15ba8e8926e6f64b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a1aed982fc8e4b9775804cad966deb78dff510fa00c418aa6f0f77893280539b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:61ff6f50a503b60ad7869b21321cb05f41c742fea81d7d7c923b46cf4a804385_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:9c7cbe9709e2748e8d882987f18d2d62aeb5993e27fcde5a5841491dce91fffc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:b002e69baf20cbd87e1cb38966db9dd74ebd417fb67e088223dc2a8b3914ce00_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter-rhel9@sha256:fa86d2d936e1e8f4b8b8a5ff8076d68b34fee5becdf566539cac97095918790e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:41bb2ad195e85e34353b94bfc324b1825bf1b66ea17799f2d06029d4eb8f511b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a4a7a2dc00d2e7bb66b0fddb5184d3540215de51ba46fe5116eace3b306c604c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ab7d2555c18b7cbb8e175aef98fceeb44dcd4504ee5f8ef45f83cca53c46ee3e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e0e97ba763b8464348292ef53cb3e60b1307eb841b7c04dc5ce905438f19595a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:96696de1c013abba356e3696c67fbe81e4918c88f801d24213440c3226ae01e1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e1d19937666275505c755108f232925c9e7c150967f2de9b3f9d17d9accdd8ef_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ee4b858a1a7446acb9b9612977a15f7943cd1f4947db73c6b04e1e4afc531f83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ffb24c3a9228e5d8400c0f694ef0dbdfd497f4ab3ddf427746d283687f924814_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4919f8ce87058390100a1e5b98f5dfa474a7974d85078887f36f5d21970c8bd1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:5364ffddcc089418cf0233034d1e57a06d72828490ef58f4efcf6530603d9eb8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:80e7b97d5c01701dea620d3d25bf88c2136e7f1ef7e6fe38ece00180108c89ec_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c6359b80bcee390d9c2bafdde313b32885a96f4e66fbd6b35dbf13aed625c985_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3c9fac4711695cdbeace40a010c314671924375494f6d741ec0202f1713eb046_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4e3ead72e97e4bd30eb9dc37f76f6ac6acdfc94be0613a7a8aaf68ea2e3c3d05_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:56d1b0687b9dce6fb31149e12c4397742dfffc6ac2554fc37236c04214eebeed_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7c87e8d426755e23bf354b71489f7293feba921666e7197dcc671f7b0fb7c896_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3b348f0405ab855d947d169ede75c8068b5aacabea1dc177a732715285bc64cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:41d414dc95ccd531511f4154553e45f6ed955c907f176adf9348f0d7aae17b27_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:977fd10a0d27c273dd24d4df5ded0da7095278f200853d07d5979e2178169386_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:deed326dc1678ae046489440c40d889757443b68cf619a5aa6272efbf90ec493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:35ac8d7a5f39aae20b38ed094628ab4f82155a14137c60e565608a3d740b4724_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:545467f53dfdaf5823cf7407a1245c428fcd81955a79bbabe38eee2b9ec58cf6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ad221505dc0e0c4d74429815228bc2517f92448f836f0dcef2c2a4b5250a9871_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d9d4b77d225c56377ffda95a58bacfa299825b28981b0cd51a99218a8473fdd7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:264b9117de2a6a35727f7309f819da33b130ed7c1c637df4089ad4ae74110222_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7cb5740b5313a184cc1cd0ba3a98877a0633cfee5e5e1a1d502b88dcadc36715_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9474544b0b1acadaa94b4806ab9e6e2c36c881fc7dff44d8d0e191bf8317f17f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:f49db58eea089f53f21b6995d92b974ce23a86963f937d69ce43f2f03c65ef83_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7d111cd3dc45133c425292d420fbaab622d838e42e99b60788200fa368c1bd81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:969928ce31ed72f47b418c2110357ce0941e7e85441f0f9d365f6ccc8322e15e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:727dfe4b4318839750b9e17f57a12e62bf93520c0639bf121caf6743f37d717e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dac31952e5e102b5f81098bcf6531e0232ad683079cde44a2123d6ebe87e372f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:08bc5d4c7ee5b41c36519fa066720ab150a0a9d3802061d78b587e361ae3bc3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1eea5cd657d0b2ae772e10cf7919ee027815330cbd8aacc42969db57ee23af02_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:ab544d39073d78c0ed3ccda3404d5caf6f374411df091a1094a26b932a77b858_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3aad3262604eda22440b6f1b586af6041a5dbb38c0f040cae835aded207fa493_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a261562129fe62a2e1c204eb299f8e128738c14de4d402f9bdac35b94c9e071c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8e1d65ab2e0fb277de40f0b94ec51716edfbb40e2769dad4bac420292873a7a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ef9e9b2026d208dcab9daf991ba30c38f89fcfb0edd9ecc09d44c915dbc630b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:18bbdf0340e32590d94ecca24680f5cb84bd395f596d1a591c7f7e33c2e8cbce_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a5199174982780eac680b7248f7edc661d7c185f7a29564fb6b7952f975f5f37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a69875a2b65487bb66d80a85609ddf6d96ec6c9a31c4429e531ca808892e6fff_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c0b7aa5c302d8bea17db2e4e761db552dbc9315389ef1641cb068b6f4cf98fc9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:2b3c70da591ef84f38cb3b9fa4977aed80444ff12d33e86eb942c7f0f1c3e5bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:5ac7a6249718617202aa23efec2413f3e1b40b593e83826e9a559d196f76a463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:7a42bf6f0301e7c045f355880c8e4f50fae5c2078d91056cb347d3cd06341961_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:e15eb8e752674a0a53a36d22e2dbaa442a7be61cfb3fb89d580399db47ce9c62_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:3f41613979b52fd417e541f6c00aca4b5a2a905b37fddf30bffc529961ce744e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6a5b0d976324356142d0354670e5bdd41f3895d1db7496749f2d9df50fcea17d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:ab79462d39932f05b35f53c7296837a2215f8a967942a011cb3611f3964dafa8_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:d8a001ce524211f7e7b2d6f6c8f6cbfa5a3c301fd92f6f5e6f2c1e8ddcc43d93_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:7d90d3c71fb21a6ca6e75dd3a9ed8f6ab7a0c7f5171042c8737f17ef0ae8b676_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:a9dc06c917aafbaa930baea9a9eed208f22bb8e169fd5284092eaa5a2bd0e2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:c44e4d52a617d34e415f21804001d0ddde9cb436939689ded529397d1ac420ee_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8@sha256:ed51df6fc74e422354d45c6e89bb10e7bd87d759db8e385d1019cb23e11486c5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3f41fbacfd4244b4e8cc4f03a9a732d68221397becc80d85c761951784233ed3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a3c44b42b61771185f92c821d21a0f4a4d826f123b37e2dd38b7cd026921be6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bf945b94d7562710e9291dca759484799eac42b574bbaaca44694388f2ccb8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f6264cf57c7e3e9f3511530c5f4f295c6f25c58e96b863af163baf70efcd4da1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:2341ce98148becef286ddc57f986e02e5e0e36d45d47cbda9664ac79a650cdc6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:272818c39ae7b1c80b641bb8165ba7a4bd1230d84607ead85f50909c2816b733_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:81edbe58f7bce293e1bea16073bd28469716767c8b4f0b49dc1e88e34686e68c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-cni@sha256:954b40bf50c650d7fb373b8e94846b1d2eb4063791c82896c72210f33d32fe92_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0805515fdbf11fbad1dfa33b643a022db89146e89b6fb70b619dd06eeabd7bce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:845decdb0cf799269641d7307037519536c621057734ddfc78d0e4700c25958e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a4cdc6ab475d950db0a5b2560574cc2073996daa4f661059b9e4852457e0aa9a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d89ae8fe9cdd76001aa279155c4dea1c339f398a4a50817cb051e51cb5e47159_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:124b76847b67e0429d9808523584183fea1e39e3e439691fb66011c988be852e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:a43ab20051b9526170c668fbfef9e473901cb49cd2eba7d52ba716c69a54bead_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f1e03505b0693358d749a2e36996dcf45ef3a56151d810c0fff84d3fd584bd37_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:f7c04d6a465ed099480ff82559033f99ac55a1bafb9bbbacc630311f1c79f02c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:233efdae3ab3b6a436f0950d9dbb64322208b346c280c91cb6cd082b84a8ee8b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:49385f41b04216bd98e3e74ec74a90532a6b47cd1508f0478b38b47c8220255c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7ee7ed96cbf3fd6277336cccbe277e416720c7b96ef482817bf90591d3fe1d53_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ffca448bbee112c604cd9aede5b6544e5d278c763b89227c29f8b34e118f93ef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:13bc225f500b2ddca2ad42277f6456d0536ef9bb0514b0be00f631d878698a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:1425f3f0dd181107d333a18e639f5744abe04ce63e7c7073c2378d6f44116d3a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:35cc4727ac21eef8f0f7760e776f0b0f47a21f9385e993c65f4480713a98542e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-must-gather@sha256:6a52fd782b719cb649e05410a23da45d14f9bbd631cf2a9e95a0e9e15047a6ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:3b5619c7ec5b2341aa3bce0012b5fc381b6c2d98d871696d9525a61638fb9a10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e20d507ae20176510f12065d7627d5456193a794b82686c595ffc24a44f98b4_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:cf83c1056ceb42eb5686849e8ddee078fea324e11abdde2b75c33e2d9659c156_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:f5fccc5ffdf620e4587c1bec420069cf0cb585f7bd54d38236d913d174bce2fe_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1726351eec510f6c809370168b2c2cdac5e92b7ac964cbf7764c804ec0ade2a4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25ef6cb77171fb673bdac39bcad069a04dbeee83f4ad91732d8394a67f942d31_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5708f505e21ce61a35b90d3e3da45340f6b08e450af6df56583233d18a9d4aea_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6fceb384de49ac2cf558c58393a45ed21ce0548e94fdedfebc4589463928bd6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:9083ee931b61eb3eddf88d67967543f15547f365cf2e51ee946a5018994ccf2d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:aaae78417c20c4d5a51ae92cb084e630f35d25adc826e2506a2aceaf807ec410_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4b5183d1c5d4e050cfbb0bfc1db03229023749d3139bb295882dd2c747c19605_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6e8843c43357b88e7974854f40f42aa83eb085d639523359f834ae1bae35cc79_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:889f95a184f42396bf97b993730ae1bbe860d44aafef1e0fbc0280a2e5ea4317_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d8603a2da62ed824005ab9e0e73239e2fda4443c7d9eaead10fc486c7bf65d27_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:11f7927ea7c2533ac8b2d0b01ba87c6bc3c3c82f1f576e9fa68be3b62d45c031_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a1472658ae3cab07a946b7aea3298dba38e78bb9dfc6f67e88561819042fe710_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f5fd2aa203032248f1bf43394836752e3e473499546ab777a3e7172342832ee9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fbb8dd8a3ad10beafd44d054f6d01b29bac5b1333792be6df76f3c2da5c55678_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:46ce9ad7779783a6b98d8fdefd461075c4553c639b213d9ce4d7c04a0ddba8a9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:98e5ddc8304167fb02561213c84a23c1405effa0b717b6335dd1e60171b28f94_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b69e7001ae15726aaf7f8482cc747d9b2b4f2c0b129cfdbe6bc89d83ae0f1034_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ca3aec6d076910bdb3c2b108acf99fd4ecdbbe3fb6fe8acc7d7e86b302dc2ee1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:a03c6f0565f088a753d137e3d4ef1dedb20e874183b839e9b001120c870afa99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:adc7d9c51929f48397df953a4d5f2c6d177d7e2d3d26bb26dd2fbb268ed95e21_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:dcd1050213f791621c2372a254ab79e94b1389357f5fb8eb0f2514840e8bc490_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-catalogd-rhel8@sha256:df70adbf0472daa93313441b13487e38ea2cb19311db9616424666bec3b9e123_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:23f01ed260dfad1962e4b13286eeea5e596539e82165563777011aaec52dd1db_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:66242e536bf30d0f4d119f2febfebd99980063e9e7b64d4846823a41f65f2ef5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:ab7aea99b8634c78d70f58c961320a6ea3d5baaae9aecbc63245bcbc3d41cc8d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8@sha256:b23144f5e5c38113ddf8c884746d6ec29c3a839e76af7d9db2fc4f04eca0fbb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:290eb25e016ab37e66865f739e42d170c5b647fc3301fc5ece8f68088d0edf31_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:7e2f0d97faed1fe3663c9b921d77e672f80f51d7a1e5d67932dc497fe27ecbf3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ee416fcd21ccbd64ed9a51e8820f547f6e3bd94cf8f135dc167c5fb6c9b21365_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:ffba0cb7bde3980826f5f6439fc8585a43866961f67846bfb442fe130b355543_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:011f1a5c650afb0df1c49561f8f9ffc4a5d95decf649894504f06e44abaf067f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c082985e7a9533e43ee8013526ed13df3c903128a0a95fc356a68ab16b26d3a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:df87fe5797df376fc3ddafde22a5e78b9d8d1725aad9243fafd05a05a888fefb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e25aea6b60158186e7afa56946cc6c6e8b508cfd82c1fe479743ca304eae4560_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4f5cac31d90b331106c56309d834d4d09b8f56f1a41c33502b74e0fe93fda218_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:523e0868163cca61b244e9d862ed0ee53e1e71fe6def2381e35478ad2c150831_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:988b6d9e42930458ad39fc6f2284ffda72acda6a379186217418c2e9211e0c04_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d902fb28f843729f0393edb4d62e161173214b69462892de039df8c64da60868_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:712e6b6f761e12f7285da483e372df7bf0566b9bf415762eed8b92a3d9eb304c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80313b07046f85174e67531f0b70e0bebcf881be50f3f0e31b9d5040902e8430_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b70fca0ac9bfc7681cd0964982908341e6df9968a93d2b014e0396286b0d04be_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b7c1302efe4a39236e39cdc8b170464a996c959d832c804cd4b5e8cc03c7b8cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:70f8f136322ae6c088f088ed87d5f37b948e24e12ca1faaefd6ee230a6149483_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8e9675db5702cd9fee3b529f2e8c845728ad34db15c21dea6925c4834a67b03e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ac2c948d2e0ec42370df72cb8e5098d5ff04346f6f55be912e2ba19c43dfc1ba_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b9ab6a47b2ece3ca7ce0cd53ead966a75602d13fd709884ae0fdc53e5fc0b2a4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2afc19fa6f4852ef3ce2910232b47c2c4e98a1484138072e458f73c170ed0112_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5b0beec8151f515e9b3df12c85ce2621eb09842a4982fa2fe44f0a7804016463_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6813060c5a5e4bcb2c15820e195b7cbec2859f9ed80aa273259f5ed38552bf27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cdb4ccfa93800b5112d2e3f74ca0690287a93589aa93203dbbe581858cc9eb1e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1ed3ae768c457f44e3c0342bec38c0f7a760adc23616831643549008e75b6b98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:2e7b4100ad51eaeaad2caba572aad0b102b8ff00c784d2c083d23d1ca1a6f555_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:4f33c1e7b0d108edd3e9f8827cff72ad57f622589bb09b5bcd98dd78b6de7e64_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:54da109bda292c8205a153d7050ce3f2319957da4f6ee447d7c4716045730710_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:0ceed1f7f04a8057f428b727ef28ea7f86e91d0e8c7bebb6da1bfb2d676d72a2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:5d74cf349bad1d291b49914223cf18ade8ec0300ce42c3b266d748d5ce188eab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:82340ddab527110755258c80d4c9d52683c7ec3f2ee334939a3f48d532926181_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel8@sha256:ea32f2dceed9038449d3405e53f119d98c6af7d2e745d612116c309f7c121159_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09245f727a8c8faf1ac219544d47caac31b7a5b30191b760f3fd0c5eb921cd44_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5e30c589d58e7a22a2fca84e7af92ffe458f52115b6fd7170f7a6d7c79a30230_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b6ef667b7377e8b1951d0b072d781f63dce1d63c4a9269472abc10cefc01c358_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bad902bfa9b410bd47415746e55451cf1786cc1245a9c79ad328b93b2bbf3e62_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:266259401e6b687b8b64ad95b4c0132fcd559431b133bf3104ed78058f016abd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:36c7a0ebf749df393dbe1a6f2cad463c2666ef3ccd02f4ac9c9d2a0b325c38cb_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:37eae3a9a86934e83344e7e51e6549a1bfb4b7f7fc41325f1efbf185114e49cf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7cd7a7bb98b6775886c0f31558667e26844ac35c54c8362b57b1f364041a1e10_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7de60ad4a861eb5e5343940aa5b7b0fc6b60ee88986da55f9e80181241b92655_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:80c4cad31eda043010f9a3cbb06ac94b75ae8780ce930a19edd81c7762cbed32_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:89cb5dde65cfea61dc53716200a307999e9aa03acd492e60c37972d08e9f50c8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ef95db59efde7af1c330a7d2b7c39253b6237176ab7fdf7559ade20cdd94e98a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:0980a5dc06991b0da496d53771e06f6e676f48d3f407448e99b5767296034b72_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:262444c2385c5569e89e6d5da7cee6b609bf1a56b876b87929ec85a40178b0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c94a3576d09e1419c563fe9f0a62a2786f1a3e3a75064e6ce92650014e5b3339_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e505e2ac5b2d73f7f15bb5c0f1f010841e73215fe04b58421a80dcbd084f0383_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9b2c5542dfe9627be5b6f9b281e80fe8ce9d3ee3d20e8a565b29f3bf6284a321_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b517b64416bbf192d17d6d3a0881cbf666c6048546bbc99bedc4d0f5b6e7acfc_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:b6d4c6d3fc20f513ee1a789520cba9fa70f3ad49f0ec470db383929ed326027c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f3a204de2e37f7404832f37b7ff541aa7feb2a24af4fb756f2b4f3b9f853a572_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4ef1f26ff5ad2ecb5b7e547e50ca190be5c3c332744dfe306928b21e73f1c9c9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ac37c439ad42aa176419d5b1bec12eefd14d400a0ba5ad5f4654b8a5797cdb3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7ace849a6d674c6c46e48b27e603f2e5ae1e6a9663ce15eb89b6097fd14471bf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8c821da075de5f1a2284a276c20e9237d7c1243aebc2d1c5b9da8055756d0869_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:d5400ffe7a80037c36053ffa01fc9ece0eddc4c31e4dff92bdb39a1a37031645_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:da2ca16d2f531b992cdd813ef4410f417c7b71e0553fb20b316fc3a6324b0b0e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4a1a7f848b67edbe862a8950e3089152052b1332adef522b148d6c39a0a2916d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9f8d5d514edfdb0a7c403c6aca3f29548fdc73b6fdfa0d58b2fba148c02bebb8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:38efc07773a2915bd59bce090dc8efc0c330a66571288388a51f5ec32e15d474_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:af59352a13c3746ee59f4a8fd5d0be94fff8f6828ee637c5c9c229ebb311b246_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:05cb2f6eded5ae07daa9566b7f971f5d8ebf2ed8cd5e1b45adb21b4ea196cb85_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4029e4ac1cbbfd2fe6a9d271d74bae8fa2ddf09c356d715afed9341f4b8eb676_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0d03707d241629d0437276b7d7c3e2441ccfb277e33166837e81388257bb029c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:125a324d61fd180afdda7554b1c48846eb14b3aa45397299df65891b3cfec17e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:36ebf524d40d2d5091a5093f2ab29c9db3b8b3ef744ed2a0fd37c8fbb09a37a6_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:5630e8880ce5a051b2edd482a6c1cdb4d7b65f735e9ef6d60269e3055d024a79_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:8ff50918c130e6a84ec775a166909ff69a6941851020c1939a342b89ccac434f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:dacba7ffd1962ef30627b0b9676f4a43a23aa98ed2ffbb9742cc1ffbeed4052d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc458f91220b768d6bba5d12c147db9c41ea9d488e369d3ab9222bd06487188a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fceb4cb3bc6f2801cbbc8634adf210934f96a781c0376dd3a9b821358d7b4a79_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4fd547444020fd1577b05b1ea761fade10e4bd23bc1be5c58fffc178041cc9bd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9bc70f53446ce8d023a5f47b68c36ef7b7c111f23c5b288d0e94209b5e880231_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a1eb71eb81256e782768ca0a0e9d14abb1833fc27c32bf391599c9959428977e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c8e2aa36cad85d1a32525df4e226ae7ad9b2eb997a44a011ab389298ee3d2ba3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:7213fb406b1da772ddc2d474940d0cb66072581cbf2790e080f40907b0821b24_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:72a5e6fdc6f3e2c90071d5466d668e1bde2803c0595f169cb685a2b5c5c5600e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:997e48c5f8ab42520cec8e988039ee096b1b2a60ca78e089214a93bb6213b23a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:d4d351304b77780141a8b83fcb4874880958ead56cec88ef500f139e4251256a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:22db0677dd4393e25a56e3ac996280d59115f5e476b7865b8ea1dc5429e9489a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:36f12f9148b77d8b4b623b1b04f61782105e3373040f785c17ae43129cffd82b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b99ab53d0dcc331d0ec5c774cfb364b18ff5077ae4a3f2d919497669ff4de9cb_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f04a537d8e4f82e526fce808b8f7ebe51b5efd30adb279fbdbad30471dc9e6d3_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f01d47e7af7c524a7740560350cc3e675ebdf018364a4a60af3eacb6cfe6449_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:429a6506fc86308dd724eabee5543726111cb1064821f5b59314e4891e1b6779_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:85c048492c736b762d3866de536a27ba44b0ba116e73486607b214780f34433f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f92941526a434bfe5989634d7ead3eb3d771653110cc8a4784de9ff4267d960d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:0f4a56ce354c243e8cee7d61a0a82d7fe49398f7577bf8f51f3f7f3c0f637d30_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:14a1da814a2cb8bc232dcc558001cfb0c7fdcfe335a20606f86d1829044b7495_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:2486cac946dcad5e2d24205df9a3019f3ff5c3848635b79a0fe5ce470b32c1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-prometheus@sha256:6f5efa87da4b5a74a176aae5f745d7ba8b41761bb8f41e68d410102b478aba9f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:1474537e5374c173c92bd15a78cd3b31f567ff785ebf9f732349ad5e45b8d34d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4303919b828bc9fef47325ede2e3ddd5a47d6c6db9fa5e03d985b2b0327aaf90_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:4306c18ab4717aef89f27f0b80775a9a0fa45c71b6db11fdc34e56e5a2aaec8a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sdn-rhel9@sha256:b18352e108d9d9a947262abd1800c44f4cb5e8ed711a71ebbd3ea1ce9e5b6504_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:08c4acc93316a27f5420d23418903decf357952bc358a02e8c14d2bd20453e46_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1739863f7fec485d06282240d2d1d49f101b8837ce3d83dda5c17a537b27125a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9d6f850280cfaaab5abc1b990c57e38afc3836a759c68aa8662f16805899011c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9e3ae83b05e1129b3a01af75ac33cf4f34f93e38b2a6f3de951bbc0d8779b4a6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:202373e3d9cc93c59c4f9570fc89a3d06cceb1a7c0a1f914d7d601431cf19cb5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:23422073ce1835108b279bfc637e6075f8fe10457e17f818b4119c15c1d6e529_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9042552790c9cb505a8b86eadbda0d9a872d07cc7f9edf3725c2445165f5eaca_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d67872650d5ba9591e64a2afae6d935a08c0e7898ef381bb91775cbc8d8f9f3c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:149dd0fe7ddb7a008c12ed5615fd3de81a71f9ad9f47f1e76cc08b7234cf3a8d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:4e6d3674057013405cd38683349a2279c1e0f7a619598ed8c07919f3c7deec8b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:b450c766bfd1349c9a98bb79a312a8947799f5962131e926d70e82353d1f938e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tests@sha256:d6068763882f878218a42daf081dc95477e482925af60ec9826456987213e38b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:977b76a116134b0e6beb6813e880079903507f3d5410b46c7927e65f64750f71_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d73df14fc4165d4f4faf39819c88f8d0094dd32328ec2a9cea197e76b17a7698_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:d9736c50be290ed9ce0636d866b248773382cbeae589e2103ef294024877bf16_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:dc4224ecc9da2d425141ecba3b6cd79e70444a992d80c0e353954282e8e83b03_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:66faa15ec075998d1b8c18423bdfeb6070da81241dcbda02c1ed00b462d95d8a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:9aac28e2d00458fb07f8bc87d175c750bf035cce276b55337930df0a656e6912_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:add43afe64ecc022ecaffc126d7dc3c0764b38de884c5e555332666580467e4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:cbc84fbdf203f1617239c8177ce8a0fd2a7c41b6e9efa54d9ae48c6c6a45474d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:3f300698b21a1648e3162a3f6c843bd7ba3c1e7ec727457b747554a486a85e75_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:c44a5be4cbf536e7a33ae84bdecb246cedb0ac1ffcd3080aacd4653bbd1f7474_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:cde13b8f13327f48bc43c92e793c8957439d85ae855fa9b290df6f9de0129e28_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:8f14ae50ac2e935ad6d7896d7583373caa37788353d33a7723418702eb32e17e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9495e575d54895713f562c971d95567a6aa4f1ac480a72c3135831fd89f1f2e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c3b055c957b9bd4368b09dd09e2ca27075be4458a14ec5e28ec0e6fc33b362e6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:1f2104f86d047031ccb12e8ecb7aae1c1ba8ec41cecdedb354d3ab2ac6e3e354_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:41ca951e3408dbfee33fed102f775a7bd465931ec57f98cb433e4ce80569ddfc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:4602748b753f62a33905946cbb9e81fbfb81d57768f9dae80cd3e425ff47b75c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:be7598e7643405a0297198677d611ec6d102a42930ea7efce672a8f3eaffff38_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:97194206b979a51de845e47565a1b750943d9b5435653dc5b575288cf48f049a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:977286b2e30d96cce7eaece01c674f00dec591a29da60e82cd5bbb9fb079bcf8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:afd6c6c08a272d92c688e40cb58ed4fea3badb15ccada8a7bef84c823fc08a01_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c3aefb1ede4e65ccd99dff7c2cbcdd11732bf6063e8a2caa174a9aedb06de21b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/distribution/distribution: Distribution: Information disclosure via stale references after content deletion"
}
]
}
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.